aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2018-04-19 19:13:18 +0200
committerRobert Loehning <robert.loehning@qt.io>2018-04-20 08:45:49 +0000
commitdb9922a5bf661bf69d740d8711851244cb5dfee5 (patch)
treea7123d21386267da41061794e8087124fd596126
parent64b6cb88b0551423a08586de2be72ee152f0079d (diff)
Squish: Fix expected compile error message
Change-Id: I37d9ea1cdbe21151f8f06cb53851143bbd2c3d6d Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/system/suite_SCOM/tst_SCOM04/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/suite_SCOM/tst_SCOM04/test.py b/tests/system/suite_SCOM/tst_SCOM04/test.py
index e7136cb0d4..a2590b6740 100644
--- a/tests/system/suite_SCOM/tst_SCOM04/test.py
+++ b/tests/system/suite_SCOM/tst_SCOM04/test.py
@@ -31,8 +31,8 @@ def main():
# expected error texts - for different compilers
expectedErrorAlternatives = ["'SyntaxError' was not declared in this scope",
"\xe2\x80\x98SyntaxError\xe2\x80\x99 was not declared in this scope",
- "'SyntaxError' : undeclared identifier",
- '"SyntaxError" : undeclared identifier',
+ "'SyntaxError' : undeclared identifier", # MSVC2013
+ "'SyntaxError': undeclared identifier", # MSVC2015
"use of undeclared identifier 'SyntaxError'",
"unknown type name 'SyntaxError'"]
startApplication("qtcreator" + SettingsPath)