diff options
author | Tom de Vries <tdevries@suse.de> | 2021-09-25 09:28:57 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-09-25 09:28:57 +0200 |
commit | 98bf5c02cfe9d13428a55c0da8d5f150d7c1fc54 (patch) | |
tree | dd14355db3a17a81c81669abf4ad792fb733615e /gdb/testsuite/gdb.fortran/array-slices.exp | |
parent | 99d0d99649c12b2bdccaeb788d5d0f0d0dff4d5d (diff) | |
download | binutils-98bf5c02cfe9d13428a55c0da8d5f150d7c1fc54.zip binutils-98bf5c02cfe9d13428a55c0da8d5f150d7c1fc54.tar.gz binutils-98bf5c02cfe9d13428a55c0da8d5f150d7c1fc54.tar.bz2 |
[gdb/testsuite] Minimize gdb restarts
Minimize gdb restarts, applying the following rules:
- don't use prepare_for_testing unless necessary
- don't use clean_restart unless necessary
Also, if possible, replace build_for_executable + clean_restart
with prepare_for_testing for brevity.
Touches 68 test-cases.
Tested on x86_64-linux.
Diffstat (limited to 'gdb/testsuite/gdb.fortran/array-slices.exp')
-rw-r--r-- | gdb/testsuite/gdb.fortran/array-slices.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.fortran/array-slices.exp b/gdb/testsuite/gdb.fortran/array-slices.exp index f9671ec..8200a0c 100644 --- a/gdb/testsuite/gdb.fortran/array-slices.exp +++ b/gdb/testsuite/gdb.fortran/array-slices.exp @@ -38,7 +38,7 @@ if {[skip_fortran_tests]} { return -1 } standard_testfile ".f90" load_lib fortran.exp -if {[prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} \ +if {[build_executable ${testfile}.exp ${testfile} ${srcfile} \ {debug f90}]} { return -1 } |