aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2018-06-04 19:20:23 +0200
committerRobert Loehning <robert.loehning@qt.io>2018-06-05 09:08:47 +0000
commit9cb170099390b2ea620ec8f5daf6bc79f0f9cb73 (patch)
tree74e5b972e95294862c52530a07afa57308166b72 /tests
parent43fa0dfe6f5a930be7281a070674aa531a4e58ba (diff)
Squish: Use built-in code model in tst_APTW01
The warnings from ClangCodeModel confuse our build check. Change-Id: Ic6b82bb304387f447bdf8eb0b2fd02dd2f250fb2 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_APTW/tst_APTW01/test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/system/suite_APTW/tst_APTW01/test.py b/tests/system/suite_APTW/tst_APTW01/test.py
index 10b3facf20..e6fcc937c1 100644
--- a/tests/system/suite_APTW/tst_APTW01/test.py
+++ b/tests/system/suite_APTW/tst_APTW01/test.py
@@ -27,7 +27,9 @@ source("../../shared/qtcreator.py")
# test New Qt Gui Application build and run for release and debug option
def main():
- startApplication("qtcreator" + SettingsPath)
+ # Start Creator with built-in code model, to avoid having
+ # warnings from the clang code model in "issues" view
+ startCreator(False)
if not startedWithoutPluginError():
return
checkedTargets = createProject_Qt_GUI(tempDir(), "SampleApp")