0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-27 13:33:17 +08:00

tests: Add query out of memory test

This commit is contained in:
Arseny Kapoulkine 2017-01-29 21:53:40 -08:00
parent 6abf1d7c1a
commit 8aa8e11ba6

View File

@ -418,6 +418,13 @@ TEST(xpath_api_empty)
CHECK(!q.evaluate_boolean(c));
}
TEST(xpath_api_query_out_of_memory)
{
test_runner::_memory_fail_threshold = 1;
CHECK_ALLOC_FAIL(xpath_query q(STR("node")));
}
#ifdef PUGIXML_HAS_MOVE
TEST_XML(xpath_api_nodeset_move_ctor, "<node><foo/><foo/><bar/></node>")
{