summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/testsuite/ChangeLog27
-rw-r--r--gdb/testsuite/gdb.ada/start.exp2
-rw-r--r--gdb/testsuite/gdb.arch/Makefile.in4
-rw-r--r--gdb/testsuite/gdb.arch/i386-bp_permanent.exp6
-rw-r--r--gdb/testsuite/gdb.arch/i386-signal.exp2
-rw-r--r--gdb/testsuite/gdb.arch/i386-size-overlap.exp2
-rw-r--r--gdb/testsuite/gdb.base/gcore-buffer-overflow.exp2
-rw-r--r--gdb/testsuite/gdb.cp/call-c.exp2
-rw-r--r--gdb/testsuite/gdb.mi/Makefile.in24
-rw-r--r--gdb/testsuite/gdb.mi/mi-reverse.exp6
-rw-r--r--gdb/testsuite/gdb.python/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.python/py-mi.exp21
-rw-r--r--gdb/testsuite/gdb.reverse/Makefile.in3
-rw-r--r--gdb/testsuite/gdb.reverse/i386-precsave.exp6
-rw-r--r--gdb/testsuite/gdb.reverse/i387-env-reverse.exp2
-rw-r--r--gdb/testsuite/gdb.reverse/i387-stack-reverse.exp2
-rw-r--r--gdb/testsuite/gdb.reverse/sigall-precsave.exp8
-rw-r--r--gdb/testsuite/gdb.reverse/sigall-reverse.exp2
-rw-r--r--gdb/testsuite/gdb.trace/tfile.exp2
19 files changed, 78 insertions, 47 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index ba3c9f3392f..22f0fd40269 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,30 @@
+2011-05-16 Pedro Alves <pedro@codesourcery.com>
+
+ * gdb.ada/start.exp: Call untested with the correct test filename.
+ * gdb.arch/i386-bp_permanent.exp: Call untested with the correct
+ test filename. Make the test's binary unique.
+ * gdb.arch/i386-signal.exp: Call untested with the correct test
+ filename.
+ * gdb.arch/i386-size-overlap.exp: Ditto.
+ * gdb.arch/Makefile.in (EXECUTABLES): Update.
+ * gdb.base/gcore-buffer-overflow.exp: Ditto.
+ * gdb.cp/call-c.exp: Ditto.
+ * gdb.mi/mi-reverse.exp: Call untested with the correct test
+ filename. Make the test's binary unique.
+ * gdb.mi/Makefile.in (EXECUTABLES): Update.
+ * gdb.python/py-mi.exp: Ditto.
+ * gdb.python/Makefile.in (EXECUTABLES): Update.
+ * gdb.reverse/i386-precsave.exp: Ditto.
+ * gdb.reverse/i387-env-reverse.exp: Call untested with the correct
+ test filename.
+ * gdb.reverse/i387-stack-reverse.exp: Ditto.
+ * gdb.reverse/sigall-precsave.exp: Ditto. Make the test's binary
+ unique.
+ * gdb.reverse/sigall-reverse.exp: Call untested with the correct
+ test filename.
+ * gdb.reverse/Makefile.in (EXECUTABLES): Update.
+ * gdb.trace/tfile.exp: Ditto.
+
2011-05-14 Yao Qi <yao@codesourcery.com>
* gdb.trace/tfile.c(add_memory_block): Store address in unsigned
diff --git a/gdb/testsuite/gdb.ada/start.exp b/gdb/testsuite/gdb.ada/start.exp
index e14ecdeb91c..2e16badeb3b 100644
--- a/gdb/testsuite/gdb.ada/start.exp
+++ b/gdb/testsuite/gdb.ada/start.exp
@@ -24,7 +24,7 @@ if { [skip_ada_tests] } { return -1 }
# This testcase verifies the behavior of the `start' command, which
# does not work when we use the gdb stub...
if [target_info exists use_gdb_stub] {
- untested exec_changed.exp
+ untested start.exp
return
}
diff --git a/gdb/testsuite/gdb.arch/Makefile.in b/gdb/testsuite/gdb.arch/Makefile.in
index b30af2bb054..a86edaf4751 100644
--- a/gdb/testsuite/gdb.arch/Makefile.in
+++ b/gdb/testsuite/gdb.arch/Makefile.in
@@ -2,8 +2,8 @@ VPATH = @srcdir@
srcdir = @srcdir@
EXECUTABLES = altivec-abi altivec-regs amd64-byte amd64-disp-step \
- amd64-dword amd64-i386-address amd64-word i386-permbkpt \
- i386-signal i386-sse
+ amd64-dword amd64-i386-address amd64-word i386-bp_permanent \
+ i386-permbkpt i386-avx i386-signal i386-sse
all info install-info dvi install uninstall installcheck check:
@echo "Nothing to be done for $@..."
diff --git a/gdb/testsuite/gdb.arch/i386-bp_permanent.exp b/gdb/testsuite/gdb.arch/i386-bp_permanent.exp
index d099745e6d1..3b39d78f03d 100644
--- a/gdb/testsuite/gdb.arch/i386-bp_permanent.exp
+++ b/gdb/testsuite/gdb.arch/i386-bp_permanent.exp
@@ -27,8 +27,8 @@ if {(![istarget "x86_64-*-*"] && ![istarget "i?86-*-*"]) || ![is_ilp32_target] }
return
}
-set testfile "i386-prologue"
-set srcfile ${testfile}.c
+set testfile "i386-bp_permanent"
+set srcfile i386-prologue.c
set binfile ${objdir}/${subdir}/${testfile}
# some targets have leading underscores on assembly symbols.
@@ -41,7 +41,7 @@ if [istarget "i?86-*-cygwin*"] then {
# Don't use "debug", so that we don't have line information for the assembly
# fragments.
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list $additional_flags]] != "" } {
- untested i386-prologue.exp
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.arch/i386-signal.exp b/gdb/testsuite/gdb.arch/i386-signal.exp
index 66f3117e29b..5a9f003c2aa 100644
--- a/gdb/testsuite/gdb.arch/i386-signal.exp
+++ b/gdb/testsuite/gdb.arch/i386-signal.exp
@@ -26,7 +26,7 @@ set binfile ${objdir}/${subdir}/${testfile}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
executable { debug }] != "" } {
- untested i386-sigframe.exp
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.arch/i386-size-overlap.exp b/gdb/testsuite/gdb.arch/i386-size-overlap.exp
index c12befb36fa..96ec641cf21 100644
--- a/gdb/testsuite/gdb.arch/i386-size-overlap.exp
+++ b/gdb/testsuite/gdb.arch/i386-size-overlap.exp
@@ -39,7 +39,7 @@ if [istarget "i?86-*-cygwin*"] then {
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
executable [list debug $additional_flags]] != "" } {
- untested "i386-size"
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp b/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp
index 7b9b990e2a1..bd101a77443 100644
--- a/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp
+++ b/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp
@@ -28,7 +28,7 @@ set pattern 0123456789012345678901234567890123456789012345678901234567890123456
set binfile ${objdir}/${subdir}/${testfile}-${pattern}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
- untested gcore.exp
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.cp/call-c.exp b/gdb/testsuite/gdb.cp/call-c.exp
index 3479c73511d..dbcf380849a 100644
--- a/gdb/testsuite/gdb.cp/call-c.exp
+++ b/gdb/testsuite/gdb.cp/call-c.exp
@@ -30,7 +30,7 @@ set objfilecpp ${objdir}/${subdir}/${testfile}.o
if {[gdb_compile "${srcfilec}" "${objfilec}" object {debug}] != ""
|| [gdb_compile "${srcfilecpp}" "${objfilecpp}" object {c++ debug}] != ""
|| [gdb_compile "${objfilecpp} ${objfilec}" "${binfile}" executable {c++ debug}] != ""} {
- untested hang.exp
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.mi/Makefile.in b/gdb/testsuite/gdb.mi/Makefile.in
index be0526d9b27..e8754f4eb09 100644
--- a/gdb/testsuite/gdb.mi/Makefile.in
+++ b/gdb/testsuite/gdb.mi/Makefile.in
@@ -1,17 +1,19 @@
VPATH = @srcdir@
srcdir = @srcdir@
-PROGS = basics c_variable cpp_variable var-cmd dw2-ref-missing-frame \
- gdb669-pthreads gdb701 gdb792 mi-async mi-basics mi-break \
- mi-cli mi-console mi-disassemble mi-eval mi-file mi-file-transfer \
- mi-non-stop mi-non-stop-exit mi-ns-stale-regcache mi-nsintrall \
- mi-nsmoribund mi-nsthrexec mi-pending mi-pthreads mi-read-memory \
- mi-regs mi-return mi-simplerun mi-stack mi-stepi mi-syn-frame \
- mi-var-block mi-var-child mi-var-cmd mi-var-cp mi-var-display \
- mi-var-invalidate mi-var-invalidate_bis mi-watch mi2-basics \
- mi2-break mi2-cli mi2-disassemble mi2-eval mi2-file mi2-pthreads \
- mi2-regs mi2-return mi2-simplerun mi2-stepi mi2-var-block \
- mi2-var-child mi2-var-cmd mi2-var-display mi2-watch until
+PROGS = basics c_variable cpp_variable var-cmd dw2-ref-missing-frame \
+ gdb669-pthreads gdb701 gdb792 mi-async mi-basics mi-break \
+ mi-cli mi-console mi-disassemble mi-eval mi-file \
+ mi-file-transfer mi-non-stop mi-non-stop-exit \
+ mi-ns-stale-regcache mi-nsintrall mi-nsmoribund mi-nsthrexec \
+ mi-pending mi-pthreads mi-read-memory mi-regs mi-return \
+ mi-reverse mi-simplerun mi-stack mi-stepi mi-syn-frame \
+ mi-var-block mi-var-child mi-var-cmd mi-var-cp mi-var-display \
+ mi-var-invalidate mi-var-invalidate_bis mi-watch mi2-basics \
+ mi2-break mi2-cli mi2-disassemble mi2-eval mi2-file \
+ mi2-pthreads mi2-regs mi2-return mi2-simplerun mi2-stepi \
+ mi2-var-block mi2-var-child mi2-var-cmd mi2-var-display \
+ mi2-watch until
MISCELLANEOUS = mi-pendshr.sl
diff --git a/gdb/testsuite/gdb.mi/mi-reverse.exp b/gdb/testsuite/gdb.mi/mi-reverse.exp
index d6c4a62d84b..3805544ad47 100644
--- a/gdb/testsuite/gdb.mi/mi-reverse.exp
+++ b/gdb/testsuite/gdb.mi/mi-reverse.exp
@@ -39,11 +39,11 @@ if [mi_gdb_start] {
continue
}
-set testfile "basics"
-set srcfile ${testfile}.c
+set testfile mi-reverse
+set srcfile basics.c
set binfile ${objdir}/${subdir}/mi2-reverse
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
- untested mi2-reverse.exp
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.python/Makefile.in b/gdb/testsuite/gdb.python/Makefile.in
index 5b2b7b096c8..9c98db9efcf 100644
--- a/gdb/testsuite/gdb.python/Makefile.in
+++ b/gdb/testsuite/gdb.python/Makefile.in
@@ -4,7 +4,7 @@ srcdir = @srcdir@
EXECUTABLES = py-type py-value py-prettyprint py-template py-block \
py-symbol py-mi py-breakpoint py-inferior py-infthread \
py-shared python lib-types py-events py-evthreads py-frame \
- py-pp-maint py-progspace py-section-script py-objfile
+ py-mi py-pp-maint py-progspace py-section-script py-objfile
MISCELLANEOUS = py-shared-sl.sl
diff --git a/gdb/testsuite/gdb.python/py-mi.exp b/gdb/testsuite/gdb.python/py-mi.exp
index 37359e9807f..2e4d12bd39d 100644
--- a/gdb/testsuite/gdb.python/py-mi.exp
+++ b/gdb/testsuite/gdb.python/py-mi.exp
@@ -24,11 +24,12 @@ if [mi_gdb_start] {
continue
}
-set testfile "py-prettyprint"
-set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/py-mi
+set testfile "py-mi"
+set srcfile py-prettyprint.c
+set binfile ${objdir}/${subdir}/${testfile}
+set pyfile py-prettyprint.py
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DMI}] != "" } {
- untested mi2-var-child.exp
+ untested ${testfile}.exp
return -1
}
@@ -43,11 +44,11 @@ if {[lsearch -exact [mi_get_features] python] < 0} {
mi_runto main
-set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}.py]
+set remote_python_file [remote_download host ${srcdir}/${subdir}/${pyfile}]
mi_gdb_test "python execfile ('${remote_python_file}')" ""
-mi_continue_to_line [gdb_get_line_number {MI breakpoint here} ${testfile}.c] \
+mi_continue_to_line [gdb_get_line_number {MI breakpoint here} ${srcfile}] \
"step to breakpoint"
mi_create_dynamic_varobj container c \
@@ -221,7 +222,7 @@ mi_varobj_update_dynamic container2 \
} {} {}
mi_continue_to_line \
- [gdb_get_line_number {MI outer breakpoint here} ${testfile}.c] \
+ [gdb_get_line_number {MI outer breakpoint here} ${srcfile}] \
"step to outer breakpoint"
mi_create_dynamic_varobj outer outer \
@@ -244,14 +245,14 @@ mi_gdb_test "-var-update outer" \
"update after updating element of outer"
mi_continue_to_line \
- [gdb_get_line_number {Another MI breakpoint} ${testfile}.c] \
+ [gdb_get_line_number {Another MI breakpoint} ${srcfile}] \
"step to second breakpoint"
mi_varobj_update_with_type_change container int 0 "update after type change"
mi_continue_to_line \
- [gdb_get_line_number {break to inspect struct and union} ${testfile}.c] \
+ [gdb_get_line_number {break to inspect struct and union} ${srcfile}] \
"step to outer breakpoint"
mi_create_dynamic_varobj nscont nstype \
@@ -305,7 +306,7 @@ if {[lsearch -exact [mi_get_features] python] < 0} {
mi_runto main
mi_continue_to_line \
- [gdb_get_line_number {break to inspect struct and union} ${testfile}.c] \
+ [gdb_get_line_number {break to inspect struct and union} ${srcfile}] \
"step to breakpoint"
# Test python/12531. Install visualizer on a cplus_fake_child.
diff --git a/gdb/testsuite/gdb.reverse/Makefile.in b/gdb/testsuite/gdb.reverse/Makefile.in
index bbde5193827..f5c4ff62a21 100644
--- a/gdb/testsuite/gdb.reverse/Makefile.in
+++ b/gdb/testsuite/gdb.reverse/Makefile.in
@@ -2,8 +2,9 @@ VPATH = @srcdir@
srcdir = @srcdir@
EXECUTABLES = break-reverse consecutive-reverse finish-reverse \
+ i386-precsave i386-reverse i386-sse-reverse \
machinestate solib-reverse step-reverse until-reverse \
- watch-reverse i386-reverse
+ watch-reverse sigall-reverse sigall-precsave
MISCELLANEOUS =
diff --git a/gdb/testsuite/gdb.reverse/i386-precsave.exp b/gdb/testsuite/gdb.reverse/i386-precsave.exp
index 2b437b1c9c8..bb3fecaa641 100644
--- a/gdb/testsuite/gdb.reverse/i386-precsave.exp
+++ b/gdb/testsuite/gdb.reverse/i386-precsave.exp
@@ -34,8 +34,8 @@ if ![istarget "i?86-*linux*"] then {
return
}
-set testfile "i386-reverse"
-set srcfile ${testfile}.c
+set testfile "i386-precsave"
+set srcfile i386-reverse.c
set binfile ${objdir}/${subdir}/${testfile}
# some targets have leading underscores on assembly symbols.
@@ -46,7 +46,7 @@ if [istarget "i?86-*-cygwin*"] then {
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
- untested i386-reverse
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.reverse/i387-env-reverse.exp b/gdb/testsuite/gdb.reverse/i387-env-reverse.exp
index caf524a257f..57b4346439c 100644
--- a/gdb/testsuite/gdb.reverse/i387-env-reverse.exp
+++ b/gdb/testsuite/gdb.reverse/i387-env-reverse.exp
@@ -37,7 +37,7 @@ if [istarget "i?86-*-cygwin*"] then {
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
- untested i387-float-reverse
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.reverse/i387-stack-reverse.exp b/gdb/testsuite/gdb.reverse/i387-stack-reverse.exp
index eaa8e0414ca..14b1b7e5b32 100644
--- a/gdb/testsuite/gdb.reverse/i387-stack-reverse.exp
+++ b/gdb/testsuite/gdb.reverse/i387-stack-reverse.exp
@@ -37,7 +37,7 @@ if [istarget "i?86-*-cygwin*"] then {
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
- untested i387-float-reverse
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.reverse/sigall-precsave.exp b/gdb/testsuite/gdb.reverse/sigall-precsave.exp
index 1919028cee3..94144d33ee1 100644
--- a/gdb/testsuite/gdb.reverse/sigall-precsave.exp
+++ b/gdb/testsuite/gdb.reverse/sigall-precsave.exp
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
if [target_info exists gdb,nosignals] {
- verbose "Skipping sigall-reverse.exp because of nosignals."
+ verbose "Skipping sigall-precsave.exp because of nosignals."
return
}
@@ -31,11 +31,11 @@ gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
-set testfile sigall-reverse
-set srcfile ${testfile}.c
+set testfile sigall-precsave
+set srcfile sigall-reverse.c
set binfile ${objdir}/${subdir}/${testfile}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
- untested sigall.exp
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.reverse/sigall-reverse.exp b/gdb/testsuite/gdb.reverse/sigall-reverse.exp
index fac353eec49..d152965bb50 100644
--- a/gdb/testsuite/gdb.reverse/sigall-reverse.exp
+++ b/gdb/testsuite/gdb.reverse/sigall-reverse.exp
@@ -35,7 +35,7 @@ set testfile sigall-reverse
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
- untested sigall.exp
+ untested ${testfile}.exp
return -1
}
diff --git a/gdb/testsuite/gdb.trace/tfile.exp b/gdb/testsuite/gdb.trace/tfile.exp
index 0614423d6bc..37a7f4281fe 100644
--- a/gdb/testsuite/gdb.trace/tfile.exp
+++ b/gdb/testsuite/gdb.trace/tfile.exp
@@ -39,7 +39,7 @@ set srcfile ${testfile}.c
set binfile $objdir/$subdir/$testfile
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
- untested file.exp
+ untested ${testfile}.exp
return -1
}
gdb_reinitialize_dir $srcdir/$subdir