diff options
author | Christian Stenger <christian.stenger@digia.com> | 2014-07-10 15:10:15 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@digia.com> | 2014-07-10 15:54:56 +0200 |
commit | 194f22c577988c7c6f03178493cc2c9a460e7076 (patch) | |
tree | 87ba6a739b7c7222a9ba37bc445c16912767d1df /tests | |
parent | be61ea48bf9f055edb005b9c14b638278827166a (diff) | |
download | qt-creator-194f22c577988c7c6f03178493cc2c9a460e7076.tar.gz |
Squish: Add temporary workaround
Without this workaround the build machines are messed up with lots of
exception handler windows.
Task-number: QTCREATORBUG-12644
Change-Id: I2075e85559314813b272cc6dbe7f068954b8c9dd
Reviewed-by: Robert Loehning <robert.loehning@digia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/system/shared/qtcreator.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/system/shared/qtcreator.py b/tests/system/shared/qtcreator.py index 086aa9411e..218c59049f 100644 --- a/tests/system/shared/qtcreator.py +++ b/tests/system/shared/qtcreator.py @@ -121,6 +121,10 @@ def waitForCleanShutdown(timeOut=10): break def checkForStillRunningQmlExecutable(possibleNames): + if JIRA.isBugStillOpen(12644): + possibleNames.append('WerFault.exe') + else: + test.warning("Remove temporary workaround for QTCREATORBUG-12644!") for qmlHelper in possibleNames: tasks = subprocess.Popen("tasklist /FI \"IMAGENAME eq %s\"" % qmlHelper, shell=True, stdout=subprocess.PIPE) |