test: Mark tst_qqmlmoduleplugin::incorrectPluginCase() as XFAIL
authorSergio Ahumada <sergio.ahumada@digia.com>
Mon, 12 Aug 2013 08:30:58 +0000 (10:30 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Tue, 13 Aug 2013 19:42:59 +0000 (21:42 +0200)
Mark incorrectPluginCase() as expected failure on OS X 10.8

Task-number: QTBUG-32652
Change-Id: I8fd2c0ceacabfc74defe84fc6538b268145c5110
Reviewed-by: Simo Fält <simo.falt@digia.com>
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
tests/auto/qml/qqmlmoduleplugin/tst_qqmlmoduleplugin.cpp

index b2f8604..509764c 100644 (file)
@@ -207,6 +207,10 @@ void tst_qqmlmoduleplugin::incorrectPluginCase()
     QString expectedError = QLatin1String("module \"com.nokia.WrongCase\" plugin \"PluGin\" not found");
 #endif
 
+#ifdef Q_OS_MACX
+    if (QSysInfo::MacintoshVersion == QSysInfo::MV_10_8)
+        QEXPECT_FAIL("", "See QTBUG-32652", Continue);
+#endif
     QCOMPARE(errors.at(0).description(), expectedError);
 }