From 085584aa30b79e7755ffdf50882f7decfd4336be Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Tue, 3 Aug 2010 08:03:23 +0000 Subject: tests: Preparations for custom new/delete (leak detection) git-svn-id: http://pugixml.googlecode.com/svn/trunk@620 99668b35-9821-0410-8761-19e4c4f06640 --- tests/test_parse.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/test_parse.cpp') diff --git a/tests/test_parse.cpp b/tests/test_parse.cpp index a997692..c7e3ae3 100644 --- a/tests/test_parse.cpp +++ b/tests/test_parse.cpp @@ -613,8 +613,8 @@ TEST(parse_out_of_memory) TEST(parse_out_of_memory_halfway) { - unsigned int count = 10000; - char_t* text = new char_t[count * 4]; + const unsigned int count = 10000; + static char_t text[count * 4]; for (unsigned int i = 0; i < count; ++i) { @@ -629,8 +629,6 @@ TEST(parse_out_of_memory_halfway) xml_document doc; CHECK(doc.load_buffer_inplace(text, count * 4).status == status_out_of_memory); CHECK_NODE(doc.first_child(), STR("")); - - delete[] text; } static bool test_offset(const char_t* contents, unsigned int options, pugi::xml_parse_status status, ptrdiff_t offset) -- cgit v1.2.3