From 51da129b50a0b99ee85af20cc4a4b77f6bc823ff Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 13 Mar 2015 22:13:10 -0700 Subject: tests: Fix truncation test data/truncation.xml was corrupted at some point and was not actually valid. Fix the file and make the test fail if we can't parse truncation.xml at all. --- tests/test_document.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_document.cpp') diff --git a/tests/test_document.cpp b/tests/test_document.cpp index 49428f2..09d89d7 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -1010,7 +1010,7 @@ TEST(document_progressive_truncation) char* buffer = new char[original_size]; - for (size_t i = 1; i < original_size; ++i) + for (size_t i = 1; i <= original_size; ++i) { char* truncated_data = buffer + original_size - i; @@ -1022,7 +1022,7 @@ TEST(document_progressive_truncation) bool result = doc.load_buffer_inplace(truncated_data, i); // only eof is parseable - CHECK((i >= 3325) ? result : !result); + CHECK((i == original_size) ? result : !result); } // fragment mode @@ -1033,7 +1033,7 @@ TEST(document_progressive_truncation) bool result = doc.load_buffer_inplace(truncated_data, i, parse_default | parse_fragment); // some truncate locations are parseable - those that come after declaration, declaration + doctype, declaration + doctype + comment and eof - CHECK(((i - 21) < 3 || (i - 66) < 3 || (i - 95) < 3 || i >= 3325) ? result : !result); + CHECK(((i - 21) < 3 || (i - 66) < 3 || (i - 95) < 3 || i == original_size) ? result : !result); } } -- cgit v1.2.3