aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2017-11-30 14:03:02 +0100
committerRobert Loehning <robert.loehning@qt.io>2017-12-14 14:52:21 +0000
commit7ded6bef30e6e4c6a9878b8da1e82b87dce218da (patch)
tree8cdd488c70b518a48808085ab5df31d4df24b034 /tests
parent67c3b232f8990a0197e490651ffd372f62304a7e (diff)
Squish: Skip "Extract Function" with clang on Windows
Change-Id: Id98d630babff10fe0def36aa895f70587852036b Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_CSUP/tst_CSUP03/test.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/system/suite_CSUP/tst_CSUP03/test.py b/tests/system/suite_CSUP/tst_CSUP03/test.py
index bd4478000e..21bc53f5c2 100644
--- a/tests/system/suite_CSUP/tst_CSUP03/test.py
+++ b/tests/system/suite_CSUP/tst_CSUP03/test.py
@@ -77,6 +77,10 @@ def main():
}
for useClang in [False, True]:
with TestSection(getCodeModelString(useClang)):
+ if (useClang and platform.system() in ('Windows', 'Microsoft')
+ and JIRA.isBugStillOpen(18607)):
+ test.warning("Skipping unstable tests on Windows", "See QTCREATORBUG-18607")
+ continue
if not startCreator(useClang):
continue
projectName = createNewNonQtProject()