diff options
-rw-r--r-- | tests/system/suite_debugger/tst_simple_debug/test.py | 3 |
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() |