aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_editors/tst_memberoperator/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_editors/tst_memberoperator/test.py')
-rw-r--r--tests/system/suite_editors/tst_memberoperator/test.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/system/suite_editors/tst_memberoperator/test.py b/tests/system/suite_editors/tst_memberoperator/test.py
index 4d16b568b0..b02271ac3e 100644
--- a/tests/system/suite_editors/tst_memberoperator/test.py
+++ b/tests/system/suite_editors/tst_memberoperator/test.py
@@ -49,7 +49,11 @@ def main():
waitFor("object.exists(':popupFrame_TextEditor::GenericProposalWidget')", 1500)
found = str(lineUnderCursor(cppwindow)).strip()
exp = testData.field(record, "expected")
- test.compare(found, exp)
+ if (useClang and exp.endswith("->") and JIRA.isBugStillOpen(16336)
+ and platform.system() in ('Windows', 'Microsoft')):
+ test.xcompare(found, exp)
+ else:
+ test.compare(found, exp)
invokeMenuItem("File", 'Revert "main.cpp" to Saved')
clickButton(waitForObject(":Revert to Saved.Proceed_QPushButton"))
snooze(1)