aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_APTW
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@theqtcompany.com>2015-06-29 18:21:42 +0200
committerRobert Loehning <robert.loehning@theqtcompany.com>2015-06-30 12:07:47 +0000
commitf0602e4ddd24192729c6cd7b3aa9825900f6fbf1 (patch)
tree0468c20f7f5f8332d13204b9192cc309d1ee7c73 /tests/system/suite_APTW
parent028709876ab97698971ef210c7adbd61df485d66 (diff)
Squish: Don't check for Resolution of "Invalid" bug report
Change-Id: Iae6f066cf52f1e520a8f0dc3a24261387ae2ec10 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'tests/system/suite_APTW')
-rw-r--r--tests/system/suite_APTW/tst_APTW03/test.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/system/suite_APTW/tst_APTW03/test.py b/tests/system/suite_APTW/tst_APTW03/test.py
index 72e5b217efa..fa843f79e16 100644
--- a/tests/system/suite_APTW/tst_APTW03/test.py
+++ b/tests/system/suite_APTW/tst_APTW03/test.py
@@ -88,11 +88,10 @@ def main():
targets = Targets.desktopTargetClasses() & ~Targets.DESKTOP_474_GCC
checkedTargets, projectName, className = createNewQtPlugin(tempDir(), "SampleApp3", "MyPlugin",
target=targets)
- is12251Open = JIRA.isBugStillOpen(12251)
virtualFunctionsAdded = False
for kit, config in iterateBuildConfigs(len(checkedTargets), "Debug"):
verifyBuildConfig(len(checkedTargets), kit, config, True, True)
- if (virtualFunctionsAdded and is12251Open and platform.system() in ('Microsoft', 'Windows')
+ if (virtualFunctionsAdded and platform.system() in ('Microsoft', 'Windows')
and "480" in Targets.getStringForTarget(checkedTargets[kit])):
test.warning("Skipping building of Qt4.8 targets because of QTCREATORBUG-12251.")
continue
@@ -131,7 +130,7 @@ def main():
addReturn(editor, "QObject \*%s::create.*" % className, "0")
virtualFunctionsAdded = True
invokeMenuItem('File', 'Save All')
- if (is12251Open and platform.system() in ('Microsoft', 'Windows')
+ if (platform.system() in ('Microsoft', 'Windows') # QTCREATORBUG-12251
and "480" in Targets.getStringForTarget(checkedTargets[kit])):
test.warning("Skipping building of Qt4.8 targets because of QTCREATORBUG-12251.")
continue