aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Loehning <[email protected]>2016-04-06 16:55:23 +0200
committerRobert Loehning <[email protected]>2016-04-07 14:40:59 +0000
commitca66ad3d0cc324c850426537341c24187dacd814 (patch)
tree56b47ab4abf26028cb2d0840dc050ddc8d782e9a
parentadc3084b0a7aa53799fffc994f8071c84bf90ad5 (diff)
Squish: Expect missing breakpoints in qml
Task-number: QTCREATORBUG-15806 Change-Id: Id7b5966a4ae6fafe979f7373718b89fdcc2b918b Reviewed-by: Christian Stenger <[email protected]>
-rw-r--r--tests/system/suite_debugger/tst_simple_debug/test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/system/suite_debugger/tst_simple_debug/test.py b/tests/system/suite_debugger/tst_simple_debug/test.py
index 205ef99cfca..acbcd4a6267 100644
--- a/tests/system/suite_debugger/tst_simple_debug/test.py
+++ b/tests/system/suite_debugger/tst_simple_debug/test.py
@@ -52,6 +52,9 @@ def main():
if result:
expectedBreakpointsOrder = [{os.path.join(workingDir, projectName, "main.cpp"):8},
{os.path.join(workingDir, projectName, "main.qml"):10}]
+ if JIRA.isBugStillOpen(15806):
+ test.xfail("Breakpoint in QML file won't be hit (QTCREATORBUG-15806).")
+ expectedBreakpointsOrder = expectedBreakpointsOrder[:-1]
# Only use 4.7.4 to work around QTBUG-25187
availableConfigs = iterateBuildConfigs(len(checkedTargets), "Debug")
progressBarWait()