summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/system/suite_debugger/tst_simple_debug/test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/system/suite_debugger/tst_simple_debug/test.py b/tests/system/suite_debugger/tst_simple_debug/test.py
index 536e33c5cd..3727c7780a 100644
--- a/tests/system/suite_debugger/tst_simple_debug/test.py
+++ b/tests/system/suite_debugger/tst_simple_debug/test.py
@@ -33,7 +33,8 @@ def main():
startApplication("qtcreator" + SettingsPath)
if not startedWithoutPluginError():
return
- targets = Targets.desktopTargetClasses()
+ # Requires Qt 4.8
+ targets = Targets.desktopTargetClasses() ^ Targets.DESKTOP_474_GCC
if not checkDebuggingLibrary(Targets.intToArray(targets)):
test.fatal("Error while checking debugging libraries - leaving this test.")
invokeMenuItem("File", "Exit")