0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-26 21:04:25 +08:00

tests: Fix clang build

This commit is contained in:
Arseny Kapoulkine 2017-02-08 00:31:05 -08:00
parent ba39838ab5
commit 4bab082a27

View File

@ -531,7 +531,7 @@ TEST_XML(xpath_memory_translate_table, "<node>a</node>")
query += STR("translate(.,'a','A'),");
query += STR("'')");
CHECK_ALLOC_FAIL(pugi::xpath_query(query.c_str()).evaluate_string(doc.first_child()) == STR("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
CHECK_ALLOC_FAIL(CHECK(!pugi::xpath_query(query.c_str())));
}
TEST_XML(xpath_sort_copy_share, "<node><child1 attr1='value1' attr2='value2'/><child2 attr1='value1'>test</child2></node>")