summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/guiapplauncher/guiapplauncher.pro2
-rw-r--r--tests/auto/guiapplauncher/tst_guiapplauncher.cpp19
2 files changed, 20 insertions, 1 deletions
diff --git a/tests/auto/guiapplauncher/guiapplauncher.pro b/tests/auto/guiapplauncher/guiapplauncher.pro
index 1f7a5fcdd9..d41d5d5b2c 100644
--- a/tests/auto/guiapplauncher/guiapplauncher.pro
+++ b/tests/auto/guiapplauncher/guiapplauncher.pro
@@ -21,4 +21,4 @@ x11 {
LIBS += $$QMAKE_LIBS_X11
}
-CONFIG+=insignificant_test # QTQAINFRA-428
+CONFIG+=insignificant_test # QTBUG-27938
diff --git a/tests/auto/guiapplauncher/tst_guiapplauncher.cpp b/tests/auto/guiapplauncher/tst_guiapplauncher.cpp
index c7146aec28..c1cbe18734 100644
--- a/tests/auto/guiapplauncher/tst_guiapplauncher.cpp
+++ b/tests/auto/guiapplauncher/tst_guiapplauncher.cpp
@@ -381,6 +381,25 @@ void tst_GuiAppLauncher::run()
const bool rc = runApp(data, &errorMessage);
if (!rc) // Wait for windows to disappear after kill
WindowManager::sleepMS(500);
+#if defined(Q_OS_LINUX) && defined(__i386__) // Ubuntu 10.04 x86
+ QEXPECT_FAIL("Qt Designer", "QTBUG-27938", Continue);
+#endif
+#if defined(Q_OS_LINUX) && defined(__x86_64__) // Ubuntu 11.10 x64
+ QEXPECT_FAIL("Qt Designer", "QTBUG-27938", Continue);
+ QEXPECT_FAIL("Qt Linguist", "QTBUG-27938", Continue);
+ QEXPECT_FAIL("Qt Demo", "QTBUG-27938", Continue);
+ QEXPECT_FAIL("Browser Demo", "QTBUG-27938", Continue);
+#endif
+#if defined(Q_OS_WIN)
+ QEXPECT_FAIL("Qt Demo", "QTBUG-27938", Continue);
+#endif
+#if defined(Q_OS_WIN) && defined(QT_BUILD_INTERNAL)
+ QEXPECT_FAIL("Qt Demo", "QTBUG-27938", Continue);
+ QEXPECT_FAIL("Composition Demo", "QTBUG-27938", Continue);
+ QEXPECT_FAIL("Sub-Attac Demo", "QTBUG-27938", Continue);
+ QEXPECT_FAIL("graphicsview/padnavigator Example", "QTBUG-27938", Continue);
+ QEXPECT_FAIL("painting/svgviewer Example", "QTBUG-27938", Continue);
+#endif
QVERIFY2(rc, qPrintable(errorMessage));
}