diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-08-04 20:10:10 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-08-04 20:10:10 +0000 |
commit | a9bc2d88736cc4d2f2963915e3de66b93585f479 (patch) | |
tree | 33f32417ccbd1af6a714bda55862322d92f1fb2c /tests/test_document.cpp | |
parent | deb9e8bc74e67ec14a39dd977afbfe345d5586f6 (diff) |
tests: Fixed tests for wchar_t mode, added dummy std::cout/wcout usage for MSVC in order to create locales beforehand (avoids memory leaks during tests), minor additional test fixes
git-svn-id: http://pugixml.googlecode.com/svn/trunk@629 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/test_document.cpp')
-rw-r--r-- | tests/test_document.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp index ced06a8..34c00a5 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -75,10 +75,8 @@ TEST(document_load_stream_error) std::ifstream fs1("filedoesnotexist"); CHECK(doc.load(fs1).status == status_io_error); -#ifndef __DMC__ // Digital Mars CRT does not like 'con' pseudo-file std::ifstream fs2("con"); CHECK(doc.load(fs2).status == status_io_error); -#endif std::istringstream iss("<node/>"); test_runner::_memory_fail_threshold = 1; @@ -130,7 +128,7 @@ TEST(document_load_stream_exceptions) TEST(document_load_stream_error_previous) { pugi::xml_document doc; - CHECK(doc.load("<node/>")); + CHECK(doc.load(STR("<node/>"))); CHECK(doc.first_child()); std::ifstream fs1("filedoesnotexist"); @@ -141,7 +139,7 @@ TEST(document_load_stream_error_previous) TEST(document_load_stream_wide_error_previous) { pugi::xml_document doc; - CHECK(doc.load("<node/>")); + CHECK(doc.load(STR("<node/>"))); CHECK(doc.first_child()); std::basic_ifstream<wchar_t> fs1("filedoesnotexist"); @@ -195,10 +193,8 @@ TEST(document_load_file_error) CHECK(doc.load_file("filedoesnotexist").status == status_file_not_found); #ifdef _WIN32 -#ifndef __DMC__ // Digital Mars CRT does not like 'con' pseudo-file CHECK(doc.load_file("con").status == status_io_error); #endif -#endif test_runner::_memory_fail_threshold = 1; CHECK(doc.load_file("tests/data/small.xml").status == status_out_of_memory); @@ -207,7 +203,7 @@ TEST(document_load_file_error) TEST(document_load_file_error_previous) { pugi::xml_document doc; - CHECK(doc.load("<node/>")); + CHECK(doc.load(STR("<node/>"))); CHECK(doc.first_child()); CHECK(doc.load_file("filedoesnotexist").status == status_file_not_found); |