diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-06-26 23:34:13 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-26 23:34:13 -0400 |
| commit | d7a5508069000403e303977a474f5bc775b7fc98 (patch) | |
| tree | d1841cfd3dffb71e2c9de0469a4575d4e3ab6834 | |
| parent | 83d4b43422e6dd72d64e9841e91a77118f1709ef (diff) | |
| parent | 3f1cb30b14aed8ce1e7567e47981cf602f74aea4 (diff) | |
Rollup merge of #42917 - kennytm:gdb-fatal-proc-rec, r=Mark-Simulacrum
compiletest: show details why GDB failed to execute. Help finding reasons of spurious errors due to GDB failing to run (#42693).
| -rw-r--r-- | src/tools/compiletest/src/runtest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 0692e07253f..4961609c77f 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -692,7 +692,7 @@ actual:\n\ } if !debugger_run_result.status.success() { - self.fatal("gdb failed to execute"); + self.fatal_proc_rec("gdb failed to execute", &debugger_run_result); } self.check_debugger_output(&debugger_run_result, &check_lines); |
