diff options
author | Tom Tromey <tromey@redhat.com> | 2013-08-22 12:10:25 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-11-04 10:55:58 -0700 |
commit | 5030a410ad1bd9a1d4aecf101ec1fa3519f04ed0 (patch) | |
tree | acc9b2650425e983946a253f9148096e75c6eea7 | |
parent | 95d7853ebb9258f938839ef257242f10851c7c09 (diff) | |
download | gdb-5030a410ad1bd9a1d4aecf101ec1fa3519f04ed0.zip gdb-5030a410ad1bd9a1d4aecf101ec1fa3519f04ed0.tar.gz gdb-5030a410ad1bd9a1d4aecf101ec1fa3519f04ed0.tar.bz2 |
fix some simple thinkos in the test suite
This fixes some parallelization thinkos from a while ago. I'm not
sure how the problems ever slipped through. In addition to a thinko
fix in twice.exp, this also finishes fixing it up for parallelization.
2013-11-04 Tom Tromey <tromey@redhat.com>
* gdb.base/gcore-buffer-overflow.exp: Use
standard_output_file, not standard_testfile.
* gdb.base/twice.exp: Use standard_testfile, not
standard_output_file. Use gdb_remote_download.
-rw-r--r-- | gdb/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/gcore-buffer-overflow.exp | 3 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/twice.exp | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 35844c0..72d9c03 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,12 @@ 2013-11-04 Tom Tromey <tromey@redhat.com> + * gdb.base/gcore-buffer-overflow.exp: Use + standard_output_file, not standard_testfile. + * gdb.base/twice.exp: Use standard_testfile, not + standard_output_file. Use gdb_remote_download. + +2013-11-04 Tom Tromey <tromey@redhat.com> + * lib/gdb.exp (get_compiler_info): Use log_file -info and restore from that. diff --git a/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp b/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp index 8d0867e..47dccf9 100644 --- a/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp +++ b/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp @@ -51,4 +51,5 @@ if { ! [ runto_main ] } then { return -1 } -gdb_gcore_cmd [standard_testfile gcore-buffer-overflow.test] "save a corefile" +gdb_gcore_cmd [standard_output_file gcore-buffer-overflow.test] \ + "save a corefile" diff --git a/gdb/testsuite/gdb.base/twice.exp b/gdb/testsuite/gdb.base/twice.exp index 936ddcb..9e7e334 100644 --- a/gdb/testsuite/gdb.base/twice.exp +++ b/gdb/testsuite/gdb.base/twice.exp @@ -14,7 +14,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. -standard_output_file twice.c +standard_testfile twice.c set options debug lappend options "additional_flags=-I." @@ -23,7 +23,7 @@ set fileid [open $local_srcfile w] puts $fileid "#include \"twice.c\"" close $fileid -remote_download host ${srcdir}/${subdir}/twice.c twice.c +gdb_remote_download host ${srcdir}/${subdir}/twice.c if { [gdb_compile $local_srcfile "${binfile}" executable $options] != "" } { untested twice.exp |