From: Simon Marchi Date: Mon, 7 Jun 2021 16:51:34 +0000 (-0400) Subject: gdb/testsuite: gdb.base/continue-all-already-running.exp: add fail if can't run to... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cfc75767cc276fb9e10c8239bb23c800a7f07e47;p=binutils-gdb.git gdb/testsuite: gdb.base/continue-all-already-running.exp: add fail if can't run to main While doing some changes, I managed to break this test in a way that running to main didn't work. However, it didn't produce any FAIL. I noticed because I diff'ed the results and saw some PASSes unexpectedly disappear, but that's a bit fragile. Add a fail in case this test fails to run to main. Ideally, I think that runto_main should by default produce a FAIL when it fails (the opposite of the existing logic), but that's a project of its own, so just fix this test for the moment. gdb/testsuite/ChangeLog: * gdb.base/continue-all-already-running.exp: Call fail if can't run to main. Change-Id: I84b816a126c92ac579ed5ebbe39b017bd5cb7096 --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index fd78401774b..45040960d0f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2021-06-07 Simon Marchi + + * gdb.base/continue-all-already-running.exp: Call fail if can't + run to main. + 2021-06-07 Andrew Burgess PR gdb/27847 diff --git a/gdb/testsuite/gdb.base/continue-all-already-running.exp b/gdb/testsuite/gdb.base/continue-all-already-running.exp index 23cd9920bc7..de84897c766 100644 --- a/gdb/testsuite/gdb.base/continue-all-already-running.exp +++ b/gdb/testsuite/gdb.base/continue-all-already-running.exp @@ -26,6 +26,7 @@ save_vars { GDBFLAGS } { } if ![runto_main] { + fail "can't run to main" return }