diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-11-17 13:41:30 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-11-17 13:42:29 (GMT) |
commit | f784f862a0242961d88650dd119becfb1a439072 (patch) | |
tree | 5290c921d5d045b797f93e3b45f8f154d5c12e8a /tests/auto/qdom | |
parent | 4c7d869bc103de36b5a97dd50f323f7af680656e (diff) | |
download | Qt-f784f862a0242961d88650dd119becfb1a439072.zip Qt-f784f862a0242961d88650dd119becfb1a439072.tar.gz Qt-f784f862a0242961d88650dd119becfb1a439072.tar.bz2 |
Remove mingw specific ifdefs after upgrade to mingw-gcc 4.4
Diffstat (limited to 'tests/auto/qdom')
-rw-r--r-- | tests/auto/qdom/tst_qdom.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/auto/qdom/tst_qdom.cpp b/tests/auto/qdom/tst_qdom.cpp index 6637202..786802e 100644 --- a/tests/auto/qdom/tst_qdom.cpp +++ b/tests/auto/qdom/tst_qdom.cpp @@ -476,10 +476,6 @@ void tst_QDom::save() void tst_QDom::initTestCase() { -#ifdef Q_CC_MINGW - QSKIP("Our current test machine, arsia, is too slow for this auto test.", SkipAll); -#endif - QFile file(SRCDIR "testdata/excludedCodecs.txt"); QVERIFY(file.open(QIODevice::ReadOnly|QIODevice::Text)); @@ -1676,7 +1672,7 @@ void tst_QDom::appendDocumentNode() const doc.appendChild(elem); - Q_ASSERT(!xml.isNull()); + QVERIFY(!xml.isNull()); const QString expected(QLatin1String("<document>\n<test_elem name=\"value\"/>\n</document>\n")); elem.appendChild(xml); |