Skip to content
Snippets Groups Projects
Commit ac57bee1 authored by Christian Stenger's avatar Christian Stenger
Browse files

Squish: Fix execution of tst_simple_debug


Targets checked for debugging libraries now match the targets
selected while creating the project.

Change-Id: Ib5e73254b549a66850da64ffb955531aae6b3477
Reviewed-by: default avatarRobert Loehning <robert.loehning@digia.com>
parent e077b233
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,10 @@ def main():
return
# using a temporary directory won't mess up a potentially existing
workingDir = tempDir()
checkedTargets, projectName = createNewQtQuickApplication(workingDir)
targetsVal = 0
for t in targets:
targetsVal |= t
checkedTargets, projectName = createNewQtQuickApplication(workingDir, targets=targetsVal)
editor = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")
if placeCursorToLine(editor, "MouseArea.*", True):
type(editor, '<Up>')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment