diff options
| author | Adrian Prantl <aprantl@apple.com> | 2018-01-30 19:40:09 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2018-01-30 19:40:09 +0000 |
| commit | ee2d2bfbcd90158abac4f8f20cd4883269392176 (patch) | |
| tree | b9080fcb63c6c5209d9566511df431af97d612ea /lldb/packages/Python/lldbsuite/test/lldbutil.py | |
| parent | 7d8f6fa86c1d10a8f01b2bec00c250b8acea1862 (diff) | |
| download | bcm5719-llvm-ee2d2bfbcd90158abac4f8f20cd4883269392176.tar.gz bcm5719-llvm-ee2d2bfbcd90158abac4f8f20cd4883269392176.zip | |
Add more diagnostics to help diagnose flaky test
llvm-svn: 323808
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbutil.py')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbutil.py b/lldb/packages/Python/lldbsuite/test/lldbutil.py index 00b65ab8a55..45f23b565dd 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbutil.py +++ b/lldb/packages/Python/lldbsuite/test/lldbutil.py @@ -766,7 +766,7 @@ def run_to_source_breakpoint(test, bkpt_pattern, source_spec, breakpoint = target.BreakpointCreateBySourceRegex( bkpt_pattern, source_spec) test.assertTrue(breakpoint.GetNumLocations() > 0, - 'No locations found for source breakpoint: "%s"'%(bkpt_pattern)) + 'No locations found for source breakpoint: "%s", file: "%s", dir: "%s"'%(bkpt_pattern, source_spec.GetFilename(), source_spec.GetDirectory())) # Launch the process, and do not stop at the entry point. if not launch_info: |

