From 7ded6bef30e6e4c6a9878b8da1e82b87dce218da Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Thu, 30 Nov 2017 14:03:02 +0100 Subject: [PATCH] Squish: Skip "Extract Function" with clang on Windows Change-Id: Id98d630babff10fe0def36aa895f70587852036b Reviewed-by: Christian Stenger --- tests/system/suite_CSUP/tst_CSUP03/test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/system/suite_CSUP/tst_CSUP03/test.py b/tests/system/suite_CSUP/tst_CSUP03/test.py index bd4478000ef..21bc53f5c2f 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()