Skip to content
Snippets Groups Projects
Commit 2f27c73c authored by Robert Loehning's avatar Robert Loehning Committed by Robert Löhning
Browse files

Squish: Added warning about unusable targets


Change-Id: I2796aaf40d0ffcf89aca085afdc685f57e1b4f76
Reviewed-by: default avatarChristian Stenger <christian.stenger@nokia.com>
parent 2ef12d87
No related branches found
No related tags found
No related merge requests found
...@@ -254,7 +254,9 @@ def __chooseTargets__(targets=QtQuickConstants.Targets.DESKTOP): ...@@ -254,7 +254,9 @@ def __chooseTargets__(targets=QtQuickConstants.Targets.DESKTOP):
mustCheck) mustCheck)
except LookupError: except LookupError:
if mustCheck: if mustCheck:
test.fail("Failed to check target '%s'" % QtQuickConstants.getStringForTarget(current)) test.fail("Failed to check target '%s'." % QtQuickConstants.getStringForTarget(current))
else:
test.warning("Target '%s' is not set up correctly." % QtQuickConstants.getStringForTarget(current))
# run and close an application # run and close an application
# withHookInto - if set to True the function tries to attach to the sub-process instead of simply pressing Stop inside Creator # withHookInto - if set to True the function tries to attach to the sub-process instead of simply pressing Stop inside Creator
......
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