Squish: Don't wait for warning on Windows

Currently, it's not being shown.

Task-number: QTCREATORBUG-7704

Change-Id: I3fbcce411b205c7ece30dc6de421b0a0a10b7ab3
Reviewed-by: Christian Stenger <christian.stenger@nokia.com>
This commit is contained in:
Robert Loehning
2012-08-07 17:10:17 +02:00
committed by Christian Stenger
parent aea6d923d0
commit 26c937e512
+1 -1
View File
@@ -18,7 +18,7 @@ def handleDebuggerWarnings(config):
except LookupError:
pass # No warning. Fine.
else:
if "Release" in config and platform.system() != "Darwin":
if "Release" in config and not platform.system() in ("Darwin", "Microsoft", "Windows"):
message = waitForObject("{container=':Qt Creator.DebugModeWidget_QSplitter' name='qt_msgbox_label' type='QLabel' visible='1'}", 20000)
messageText = str(message.text)
test.verify(messageText.startswith('This does not seem to be a "Debug" build.\nSetting breakpoints by file name and line number may fail.'),