From ba4fa17a677669d8cb591fcb4a1cd1ba715cd2ee Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Thu, 10 Dec 2015 13:11:29 +0100 Subject: [PATCH] Squish: Ignore known issue in clang code model Change-Id: Ie57bf820fc2aa318ecf16cac0a2f4cb2f0ffe43a Task-number: QTCREATORBUG-15483 Reviewed-by: Christian Stenger --- tests/system/suite_CSUP/tst_CSUP06/test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/system/suite_CSUP/tst_CSUP06/test.py b/tests/system/suite_CSUP/tst_CSUP06/test.py index 76d38ee223b..b36adb57fdb 100644 --- a/tests/system/suite_CSUP/tst_CSUP06/test.py +++ b/tests/system/suite_CSUP/tst_CSUP06/test.py @@ -149,7 +149,9 @@ def checkSymbolCompletion(editor, isClangCodeModel): else: exp = (symbol[:max(symbol.rfind(":"), symbol.rfind(".")) + 1] + expectedSug.get(symbol, found)[0]) - test.compare(changedLine, exp, "Verify completion matches.") + if not (isClangCodeModel and platform.system() in ('Microsoft', 'Windows') + and JIRA.isBugStillOpen(15483)): + test.compare(changedLine, exp, "Verify completion matches.") performAutoCompletionTest(editor, ".*Complete symbols.*", "//", testSymb, missing, expectedSuggestion, expectedResults)