diff --git a/dlls/xmllite/tests/reader.c b/dlls/xmllite/tests/reader.c index 60652ee0c21..ebf4f5d7e5c 100644 --- a/dlls/xmllite/tests/reader.c +++ b/dlls/xmllite/tests/reader.c @@ -1724,6 +1724,8 @@ static void test_read_cdata(void) static struct test_entry text_tests[] = { { "simple text", "", "simple text", S_OK }, { "text ]]> text", "", "", WC_E_CDSECTEND }, + { "\n \r\n \n\n text", "", "\n \n \n\n text", S_OK, S_OK, TRUE }, + { "\r \r\r\n \n\n text", "", "\n \n\n \n\n text", S_OK, S_OK, TRUE }, { NULL } }; @@ -1748,17 +1750,13 @@ static void test_read_text(void) type = XmlNodeType_None; hr = IXmlReader_Read(reader, &type); - /* read one more to get to CDATA */ + /* read one more to get to text node */ if (type == XmlNodeType_Element) { type = XmlNodeType_None; hr = IXmlReader_Read(reader, &type); } - - if (test->hr_broken) - ok(hr == test->hr || broken(hr == test->hr_broken), "got %08x for %s\n", hr, test->xml); - else - ok(hr == test->hr, "got %08x for %s\n", hr, test->xml); + ok(hr == test->hr, "got %08x for %s\n", hr, test->xml); if (hr == S_OK) { const WCHAR *str;