tests: Reenable all tests for compact mode

This commit is contained in:
Arseny Kapoulkine 2014-10-10 19:32:40 -07:00
parent e6dd761ca3
commit 7795f00fba

View File

@ -159,20 +159,6 @@ int main(int, char** argv)
for (test = test_runner::_tests; test; test = test->_next) for (test = test_runner::_tests; test; test = test->_next)
{ {
#ifdef PUGIXML_COMPACT
if (false
|| strcmp(test->_name, "parse_out_of_memory") == 0
|| strcmp(test->_name, "parse_out_of_memory_halfway") == 0
|| strcmp(test->_name, "dom_node_append_buffer_out_of_memory_extra") == 0
|| strcmp(test->_name, "dom_node_out_of_memory") == 0
|| strcmp(test->_name, "dom_node_copy_out_of_memory") == 0
|| strcmp(test->_name, "dom_node_copy_copyless") == 0
|| strcmp(test->_name, "memory_large_allocations") == 0
|| strcmp(test->_name, "memory_custom_memory_management") == 0
)
continue;
#endif
total++; total++;
passed += run_test(test); passed += run_test(test);
} }