[gdb/testsuite] Fix PATH warning in gdb.rust/traits.exp
authorTom de Vries <tdevries@suse.de>
Mon, 14 Sep 2020 07:54:47 +0000 (09:54 +0200)
committerTom de Vries <tdevries@suse.de>
Mon, 14 Sep 2020 07:54:47 +0000 (09:54 +0200)
When running the rust test-cases with release 1.36.0 and LLVM version 7.0, I
run into:
...
(gdb) UNTESTED: gdb.rust/traits.exp: could not read \
  outputs/gdb.rust/traits/traits with readelf
PATH: gdb.rust/traits.exp: could not read \
  outputs/gdb.rust/traits/traits with readelf
...

Fix the PATH warning by printing [file tail $binfile] instead $binfile.

Tested on x86_64-linux.

gdb/testsuite/ChangeLog:

2020-09-14  Tom de Vries  <tdevries@suse.de>

* gdb.rust/traits.exp: Fix PATH warning.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.rust/traits.exp

index 230def43580a6d4867cae0d7fd0c356a9427c3cd..d83a2c629b0858f79a49ff80a53fb32aee6dd570 100644 (file)
@@ -1,3 +1,7 @@
+2020-09-14  Tom de Vries  <tdevries@suse.de>
+
+       * gdb.rust/traits.exp: Fix PATH warning.
+
 2020-09-13  Pedro Alves  <pedro@palves.net>
 
        * gdb.base/catch-follow-exec.c (main): Add explicit return
index ac2b4506f3cf2124df4723cb8e82084598ae0de8..41e58e1fef7598ca95bafdec311268f40de914d7 100644 (file)
@@ -28,7 +28,7 @@ if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug rust}]} {
 set readelf_program [gdb_find_readelf]
 set result [catch "exec $readelf_program --debug-dump=info $binfile" output]
 if {$result != 0} {
-    untested "could not read ${binfile} with readelf"
+    untested "could not read [file tail ${binfile}] with readelf"
     return
 }