From f9ff63e340b9294c52979e06f468b57b23e9df75 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 20 Apr 2020 16:05:18 +0200 Subject: [PATCH] Squish: Avoid false positive in tst_CSUP01 If intrinsic headers are globally present the proposal widget might also suggest _mm_undefined_si128 or _mm256_undefined_si256 when typing 'unsi'. Be slightly more specific and therefore exclude these. Change-Id: Ie988ce7a1312fb31803a6e9fa885e10a51229d09 Reviewed-by: Robert Loehning --- tests/system/suite_CSUP/tst_CSUP01/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/suite_CSUP/tst_CSUP01/test.py b/tests/system/suite_CSUP/tst_CSUP01/test.py index d7d556721ce..8cac9bbfb0f 100644 --- a/tests/system/suite_CSUP/tst_CSUP01/test.py +++ b/tests/system/suite_CSUP/tst_CSUP01/test.py @@ -77,7 +77,7 @@ def main(): "possible to select one of the suggestions.") # Step 4: Insert text "voi" to new line and press Tab. resetLine(editorWidget) - type(editorWidget, "unsi") + type(editorWidget, "unsig") try: proposalListView = waitForObject(":popupFrame_Proposal_QListView") waitForObjectItem(proposalListView, "unsigned")