Squish: Ignore known issue in clang code model

Change-Id: Ie57bf820fc2aa318ecf16cac0a2f4cb2f0ffe43a
Task-number: QTCREATORBUG-15483
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
Robert Loehning
2015-12-10 13:11:29 +01:00
parent 8a650b8c23
commit ba4fa17a67

View File

@@ -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)