Squish: Fix expected compile error message

Change-Id: I37d9ea1cdbe21151f8f06cb53851143bbd2c3d6d
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Robert Loehning
2018-04-19 19:13:18 +02:00
parent 64b6cb88b0
commit db9922a5bf

View File

@@ -31,8 +31,8 @@ def main():
# expected error texts - for different compilers # expected error texts - for different compilers
expectedErrorAlternatives = ["'SyntaxError' was not declared in this scope", expectedErrorAlternatives = ["'SyntaxError' was not declared in this scope",
"\xe2\x80\x98SyntaxError\xe2\x80\x99 was not declared in this scope", "\xe2\x80\x98SyntaxError\xe2\x80\x99 was not declared in this scope",
"'SyntaxError' : undeclared identifier", "'SyntaxError' : undeclared identifier", # MSVC2013
'"SyntaxError" : undeclared identifier', "'SyntaxError': undeclared identifier", # MSVC2015
"use of undeclared identifier 'SyntaxError'", "use of undeclared identifier 'SyntaxError'",
"unknown type name 'SyntaxError'"] "unknown type name 'SyntaxError'"]
startApplication("qtcreator" + SettingsPath) startApplication("qtcreator" + SettingsPath)