diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2016-10-06 15:12:54 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2016-10-06 17:26:09 +0100 |
commit | 8ff5432c0c9912efc43f92837243aecfcf1c1098 (patch) | |
tree | 4778a58d36f30f330839b26705f000433f8ef71a /gdb | |
parent | 3929b7e909b48a20d5dac6631e519f3b6b2ac84e (diff) | |
download | gdb-8ff5432c0c9912efc43f92837243aecfcf1c1098.zip gdb-8ff5432c0c9912efc43f92837243aecfcf1c1098.tar.gz gdb-8ff5432c0c9912efc43f92837243aecfcf1c1098.tar.bz2 |
testsuite: solib-disc: Use `standard_output_file'
Correct a commit 2151ccc56c74 ("Always organize test artifacts in a
directory hierarchy") regression causing:
Running .../gdb/testsuite/gdb.base/solib-disc.exp ...
gdb compile failed, Assembler messages:
Fatal error: can't create .../gdb/testsuite/gdb.base/so-disc-shr.c.o: No such file or directory
by using `standard_output_file' to construct output file names
throughout.
gdb/testsuite/
* gdb.base/solib-disc.exp: Use `standard_output_file'
throughout.
(cherry picked from commit 7470adbb872d5363580eb5e0a8dbb231c286ee4c)
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/solib-disc.exp | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 26c917b..caec82b 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-10-06 Maciej W. Rozycki <macro@imgtec.com> + + * gdb.base/solib-disc.exp: Use `standard_output_file' + throughout. + 2016-10-06 Pedro Alves <palves@redhat.com> * gdb.base/jit-simple-dl.c: New file. diff --git a/gdb/testsuite/gdb.base/solib-disc.exp b/gdb/testsuite/gdb.base/solib-disc.exp index 66cf960..8b61c83 100644 --- a/gdb/testsuite/gdb.base/solib-disc.exp +++ b/gdb/testsuite/gdb.base/solib-disc.exp @@ -27,11 +27,11 @@ if { [info proc gdb_reconnect] == "" } { set testfile solib-disc set libfile so-disc-shr set srcfile ${testfile}.c -set binfile ${objdir}/${subdir}/${testfile} +set binfile [standard_output_file ${testfile}] set libsrc "${srcdir}/${subdir}/${libfile}.c" set libname "${libfile}.so" -set libobj "${objdir}/${subdir}/${libname}" +set libobj [standard_output_file ${libname}] set execsrc "${srcdir}/${subdir}/${srcfile}" set lib_dlopen [shlib_target_file ${libname}] set lib_syms [shlib_symbol_file ${libname}] |