tests: No need to exclude files after the move out of Qt.
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>
Sun, 29 Jan 2012 09:09:37 +0000 (10:09 +0100)
committerQt by Nokia <qt-info@nokia.com>
Wed, 27 Jun 2012 06:29:19 +0000 (08:29 +0200)
The test made sense when being located in the monolithic Qt
repository but right now the test is not needed.

Change-Id: If4212c0a9d16cd210a6b031c95000491e5948515
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
tests/auto/checkxmlfiles/tst_checkxmlfiles.cpp

index 290e217..240cc62 100644 (file)
@@ -105,11 +105,7 @@ void tst_CheckXMLFiles::checkXMLFiles_data() const
     while(it.hasNext())
     {
         it.next();
-
-        /* We got tons of broken XML files as part of auto tests. */
-        if(!it.filePath().contains(QLatin1String("/tests/auto/")) &&
-           !it.filePath().contains(QLatin1String("/tests/arthur/")))
-            QTest::newRow(it.filePath().toUtf8().constData()) << it.filePath();
+        QTest::newRow(it.filePath().toUtf8().constData()) << it.filePath();
     }
 }