tests: Add a test for load_file with wide Unicode name

This commit is contained in:
Arseny Kapoulkine 2014-11-24 18:27:54 -08:00
parent 125aa55061
commit 3e1ae89cf6
2 changed files with 11 additions and 0 deletions

1
tests/data/тест.xml Normal file
View file

@ -0,0 +1 @@
<node/>

View file

@ -323,6 +323,16 @@ TEST(document_load_file_wide_ascii)
CHECK_NODE(doc, STR("<node />"));
}
#if !defined(__DMC__) && !defined(__MWERKS__)
TEST(document_load_file_wide_unicode)
{
pugi::xml_document doc;
CHECK(doc.load_file(L"tests/data/\x0442\x0435\x0441\x0442.xml"));
CHECK_NODE(doc, STR("<node />"));
}
#endif
TEST(document_load_file_wide_out_of_memory)
{
test_runner::_memory_fail_threshold = 1;