Skip to content
Snippets Groups Projects
Commit a6f90353 authored by Christian Stenger's avatar Christian Stenger
Browse files

Squish: Clean up (Bug 6967 is closed)


Task-number: QTCREATORBUG-6967

Change-Id: I460110bbad5a400aef474f837fe29c2821594fd5
Reviewed-by: default avatarRobert Löhning <robert.loehning@nokia.com>
parent ecb8ff1a
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,6 @@ class JIRA: ...@@ -168,7 +168,6 @@ class JIRA:
# ALWAYS update this dict when adding a new function for a workaround! # ALWAYS update this dict when adding a new function for a workaround!
def __initBugDict__(self): def __initBugDict__(self):
self.__bugs__= { self.__bugs__= {
'QTCREATORBUG-6967':self._workaroundCreator6967_,
'QTCREATORBUG-6853':self._workaroundCreator6853_, 'QTCREATORBUG-6853':self._workaroundCreator6853_,
'QTCREATORBUG-6918':self._workaroundCreator_MacEditorFocus_, 'QTCREATORBUG-6918':self._workaroundCreator_MacEditorFocus_,
'QTCREATORBUG-6953':self._workaroundCreator_MacEditorFocus_ 'QTCREATORBUG-6953':self._workaroundCreator_MacEditorFocus_
...@@ -179,10 +178,6 @@ class JIRA: ...@@ -179,10 +178,6 @@ class JIRA:
############### functions that hold workarounds ################################# ############### functions that hold workarounds #################################
def _workaroundCreator6967_(self, *args):
if args[0] == 'Mobile Qt Application':
args[1].remove('Qt Simulator')
def _workaroundCreator6853_(self, *args): def _workaroundCreator6853_(self, *args):
if "Release" in args[0] and platform.system() == "Linux": if "Release" in args[0] and platform.system() == "Linux":
snooze(1) snooze(1)
......
...@@ -71,7 +71,6 @@ def main(): ...@@ -71,7 +71,6 @@ def main():
pass pass
waitForObject("{type='QLabel' unnamed='1' visible='1' text='Target Setup'}") waitForObject("{type='QLabel' unnamed='1' visible='1' text='Target Setup'}")
availableCheckboxes = filter(visibleCheckBoxExists, QtQuickConstants.getAllTargetStrings()) availableCheckboxes = filter(visibleCheckBoxExists, QtQuickConstants.getAllTargetStrings())
JIRA.performWorkaroundIfStillOpen(6967, JIRA.Bug.CREATOR, template, displayedPlatforms)
# verification whether expected, found and configured match # verification whether expected, found and configured match
for t in targets: for t in targets:
if requiredVersion: if requiredVersion:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment