diff options
author | Tom de Vries <tdevries@suse.de> | 2021-09-30 19:07:47 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-09-30 19:07:47 +0200 |
commit | b6107a72badd38a2cf63fc09759ce281547c19a3 (patch) | |
tree | 5d1feff973466799fe2aafe26d0fc717278f8725 /gdb/testsuite/gdb.mi/mi-fullname-deleted.exp | |
parent | 7325ba796b4432b73388d0cdbd5b0e8c8dee8855 (diff) | |
download | gdb-b6107a72badd38a2cf63fc09759ce281547c19a3.zip gdb-b6107a72badd38a2cf63fc09759ce281547c19a3.tar.gz gdb-b6107a72badd38a2cf63fc09759ce281547c19a3.tar.bz2 |
[gdb/testsuite] Fix untested messages in gdb.mi/*.exp
The effect of:
...
untested "y.exp"
...
in a gdb.x/y.exp is:
...
UNTESTED: gdb.x/y.exp: y.exp
...
which is a bit pointless.
Replace these untested messages in gdb.mi/*.exp with the usual "failed to
compile".
Likewise for an:
...
untested $testname
...
where the variable is undefined.
Tested on x86_64-linux.
Diffstat (limited to 'gdb/testsuite/gdb.mi/mi-fullname-deleted.exp')
-rw-r--r-- | gdb/testsuite/gdb.mi/mi-fullname-deleted.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.mi/mi-fullname-deleted.exp b/gdb/testsuite/gdb.mi/mi-fullname-deleted.exp index fcf97c0..102aadb 100644 --- a/gdb/testsuite/gdb.mi/mi-fullname-deleted.exp +++ b/gdb/testsuite/gdb.mi/mi-fullname-deleted.exp @@ -57,7 +57,7 @@ puts $f "int main (void) { return 0; }" close $f if { [gdb_compile "$srcfileabs" "${binfile}" executable {debug}] != "" } { - untested $testname + untested "failed to compile" return -1 } |