diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-01-04 11:43:58 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-01-04 11:43:58 -0500 |
commit | 7b0ff8a22af175fd8f1aeb3b4ed3d7caf7befc3f (patch) | |
tree | 23c4fe4abb1d4972b5dc95988fd51f9e909bd365 /gdb/testsuite | |
parent | a754fbdfa22cf9f56a0ff20e7b5f400daeb4b3e7 (diff) | |
download | binutils-7b0ff8a22af175fd8f1aeb3b4ed3d7caf7befc3f.zip binutils-7b0ff8a22af175fd8f1aeb3b4ed3d7caf7befc3f.tar.gz binutils-7b0ff8a22af175fd8f1aeb3b4ed3d7caf7befc3f.tar.bz2 |
gdb/testsuite: use build_executable in gdb.server/stop-reply-no-thread.exp
This test uses prepare_for_testing, then does a clean_restart for each
test configuration. prepare_for_testing does a build_executable plus a
clean_restart. So the clean_restart inside prepare_for_testing is done
for nothing.
Change prepare_for_testing to just build_executable to avoid the
unnecessary clean_restart.
gdb/testsuite/ChangeLog:
* gdb.server/stop-reply-no-thread.exp: Use build_executable
instead of prepare_for_testing.
Change-Id: I8b2a2e90353c57c39c49a3665083331b4882fdd0
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.server/stop-reply-no-thread.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 079814a..3200c34 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2021-01-04 Simon Marchi <simon.marchi@efficios.com> + * gdb.server/stop-reply-no-thread.exp: Use build_executable + instead of prepare_for_testing. + +2021-01-04 Simon Marchi <simon.marchi@efficios.com> + * gdb.server/solib-list.exp: Use clean_restart. 2021-01-04 Tom de Vries <tdevries@suse.de> diff --git a/gdb/testsuite/gdb.server/stop-reply-no-thread.exp b/gdb/testsuite/gdb.server/stop-reply-no-thread.exp index ea82780..5e93b47 100644 --- a/gdb/testsuite/gdb.server/stop-reply-no-thread.exp +++ b/gdb/testsuite/gdb.server/stop-reply-no-thread.exp @@ -28,7 +28,7 @@ if { [skip_gdbserver_tests] } { } standard_testfile -if [prepare_for_testing "failed to prepare" $testfile $srcfile] { +if { [build_executable "failed to prepare" $testfile $srcfile] == -1 } { return -1 } |