aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-07-12 16:39:42 +0000
committerTom Tromey <tromey@redhat.com>2012-07-12 16:39:42 +0000
commit93c0ef376838b425ab9aa48c737c7757408df3fd (patch)
treeeedc8ba01b419a30928960a421f42334adc5cac1 /gdb
parent76027ef599f664d2c45574304d304abc962145c2 (diff)
downloadgdb-93c0ef376838b425ab9aa48c737c7757408df3fd.zip
gdb-93c0ef376838b425ab9aa48c737c7757408df3fd.tar.gz
gdb-93c0ef376838b425ab9aa48c737c7757408df3fd.tar.bz2
* lib/gdb.exp (standard_testfile): Don't declare objdir.
(clean_restart): Likewise. (core_find): Use standard_output_file.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/lib/gdb.exp5
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index ed94431..f9b6fa5 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,11 @@
2012-07-12 Tom Tromey <tromey@redhat.com>
+ * lib/gdb.exp (standard_testfile): Don't declare objdir.
+ (clean_restart): Likewise.
+ (core_find): Use standard_output_file.
+
+2012-07-12 Tom Tromey <tromey@redhat.com>
+
* gdb.dwarf2/dup-psym.exp: Use prepare_for_testing_full.
* gdb.dwarf2/dw2-anonymous-func.exp: Use
prepare_for_testing_full.
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index c36a8ad..4f2b7c9 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -3097,7 +3097,7 @@ proc standard_output_file {basename} {
proc standard_testfile {args} {
global gdb_test_file_name
- global objdir subdir
+ global subdir
global gdb_test_file_last_vars
# Outputs.
@@ -3797,7 +3797,6 @@ proc build_executable { testname executable {sources ""} {options {debug}} } {
# the basename of the binary.
proc clean_restart { executable } {
global srcdir
- global objdir
global subdir
set binfile [standard_output_file ${executable}]
@@ -3987,7 +3986,7 @@ proc core_find {binfile {deletefiles {}} {arg ""}} {
# could have many core files lying around, and it may be difficult to
# tell which one is ours, so let's run the program in a subdirectory.
set found 0
- set coredir "${objdir}/${subdir}/coredir.[getpid]"
+ set coredir [standard_output_file coredir.[getpid]]
file mkdir $coredir
catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
# remote_exec host "${binfile}"