forked from qt-creator/qt-creator
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 <robert.loehning@qt.io>
This commit is contained in:
committed by
Robert Loehning
parent
cfb64f00d6
commit
f9ff63e340
@@ -77,7 +77,7 @@ def main():
|
|||||||
"possible to select one of the suggestions.")
|
"possible to select one of the suggestions.")
|
||||||
# Step 4: Insert text "voi" to new line and press Tab.
|
# Step 4: Insert text "voi" to new line and press Tab.
|
||||||
resetLine(editorWidget)
|
resetLine(editorWidget)
|
||||||
type(editorWidget, "unsi")
|
type(editorWidget, "unsig")
|
||||||
try:
|
try:
|
||||||
proposalListView = waitForObject(":popupFrame_Proposal_QListView")
|
proposalListView = waitForObject(":popupFrame_Proposal_QListView")
|
||||||
waitForObjectItem(proposalListView, "unsigned")
|
waitForObjectItem(proposalListView, "unsigned")
|
||||||
|
Reference in New Issue
Block a user