* gdb.server/ext-attach.exp: Use standard_testfile,

prepare_for_testing.
	* gdb.server/ext-run.exp: Use standard_testfile,
	build_executable.
	* gdb.server/file-transfer.exp: Use standard_testfile,
	prepare_for_testing.
	* gdb.server/server-exec-info.exp: Use standard_testfile.
	* gdb.server/server-mon.exp: Use standard_testfile,
	prepare_for_testing.
	* gdb.server/server-run.exp: Use standard_testfile,
	build_executable.
	* gdb.server/solib-list.exp: Use standard_testfile,
	standard_output_file.
This commit is contained in:
Tom Tromey 2012-06-25 19:46:26 +00:00
parent 8a3e1f8d52
commit b0963d7350
8 changed files with 30 additions and 45 deletions

View File

@ -1,3 +1,19 @@
2012-06-25 Tom Tromey <tromey@redhat.com>
* gdb.server/ext-attach.exp: Use standard_testfile,
prepare_for_testing.
* gdb.server/ext-run.exp: Use standard_testfile,
build_executable.
* gdb.server/file-transfer.exp: Use standard_testfile,
prepare_for_testing.
* gdb.server/server-exec-info.exp: Use standard_testfile.
* gdb.server/server-mon.exp: Use standard_testfile,
prepare_for_testing.
* gdb.server/server-run.exp: Use standard_testfile,
build_executable.
* gdb.server/solib-list.exp: Use standard_testfile,
standard_output_file.
2012-06-25 Tom Tromey <tromey@redhat.com>
* lib/gdb.exp (standard_output_file): Use "file join".

View File

@ -19,9 +19,7 @@
load_lib gdbserver-support.exp
set testfile "ext-attach"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
standard_testfile
if { [skip_gdbserver_tests] } {
return 0
@ -32,16 +30,10 @@ if [is_remote target] then {
return 0
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
untested ext-attach.exp
if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
return -1
}
gdb_exit
gdb_start
gdb_load $binfile
gdb_reinitialize_dir $srcdir/$subdir
# Make sure we're disconnected, in case we're testing with an
# extended-remote board, therefore already connected.
gdb_test "disconnect" ".*"

View File

@ -19,15 +19,13 @@
load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/ext-run
standard_testfile server.c
if { [skip_gdbserver_tests] } {
return 0
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
return -1
}

View File

@ -18,24 +18,16 @@
load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/file-transfer${EXEEXT}
standard_testfile server.c
if { [skip_gdbserver_tests] } {
return 0
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
untested file-transfer.exp
if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
return -1
}
gdb_exit
gdb_start
gdb_load $binfile
gdb_reinitialize_dir $srcdir/$subdir
# Make sure we're disconnected, in case we're testing with an
# extended-remote board, therefore already connected.
gdb_test "disconnect" ".*"

View File

@ -15,9 +15,7 @@
load_lib gdbserver-support.exp
set testfile "no-execfile-info"
set srcfile "server.c"
#if { [build_executable ${testfile}.exp ${testfile} ${srcfile}] == -1} {
standard_testfile server.c
if [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] {
return -1
}

View File

@ -19,23 +19,16 @@
load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/server-mon
standard_testfile server.c
if { [skip_gdbserver_tests] } {
return 0
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
return -1
}
gdb_exit
gdb_start
gdb_load $binfile
gdb_reinitialize_dir $srcdir/$subdir
# Make sure we're disconnected, in case we're testing with an
# extended-remote board, therefore already connected.
gdb_test "disconnect" ".*"

View File

@ -19,15 +19,13 @@
load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/server-run
standard_testfile server.c
if { [skip_gdbserver_tests] } {
return 0
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
return -1
}

View File

@ -27,13 +27,11 @@ if {[skip_gdbserver_tests] || [skip_shlib_tests]} {
return
}
set testfile "solib-list"
standard_testfile solib-list-main.c
set srclibfile ${testfile}-lib.c
set srcfile ${testfile}-main.c
set binlibfile ${objdir}/${subdir}/${testfile}.so
set binlibfile [standard_output_file ${testfile}.so]
set executable ${testfile}
set objfile ${objdir}/${subdir}/${executable}.o
set binfile ${objdir}/${subdir}/${executable}
set objfile ${binfile}.o
if { [get_compiler_info]
|| [gdb_compile_shlib "${srcdir}/${subdir}/${srclibfile}" "${binlibfile}" [list debug ldflags=-Wl,-soname,${binlibfile}]] != ""