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:
parent
73b18f7df5
commit
0b951b7e80
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue