tests: Reduced stack pressure for one of tests (CW/IC8 can't handle it)

git-svn-id: http://pugixml.googlecode.com/svn/trunk@207 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2009-11-04 19:57:42 +00:00
parent 73b18f7df5
commit 0b951b7e80

View file

@ -24,9 +24,9 @@ TEST(xpath_allocator_many_pages)
{
std::string query = "0";
for (int i = 0; i < 1024; ++i) query += "+string-length('abcdefgh')";
for (int i = 0; i < 128; ++i) query += "+string-length('abcdefgh')";
CHECK_XPATH_NUMBER(xml_node(), query.c_str(), 8192);
CHECK_XPATH_NUMBER(xml_node(), query.c_str(), 1024);
}
TEST(xpath_allocator_large_page)