summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-11-10 02:28:37 +0000
committerAndrew Cagney <cagney@redhat.com>2001-11-10 02:28:37 +0000
commit1c1386bddb0fab94ab8d99d6c9e3a5a7972af628 (patch)
tree71f4c0e0019859553c95b522b0cdd21e35b3d900
parentdf84b18711df84d4cdbee23956f0df56a1de53c5 (diff)
downloadgdb-1c1386bddb0fab94ab8d99d6c9e3a5a7972af628.tar.gz
* gdb.asm/asm-source.exp: Supress file, instead of skip, when not
implemented.
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.asm/asm-source.exp3
-rw-r--r--gdb/testsuite/gdb.base/restore.exp2
3 files changed, 7 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index c61480de670..e692856317f 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,10 @@
2001-11-09 Andrew Cagney <ac131313@redhat.com>
+ * gdb.base/restore.exp: Include $expected value in restored test
+ message.
+
+2001-11-09 Andrew Cagney <ac131313@redhat.com>
+
* gdb.asm/asm-source.exp: Supress file, instead of skip, when not
implemented.
diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp
index 3462572cc00..7f73068c9cb 100644
--- a/gdb/testsuite/gdb.asm/asm-source.exp
+++ b/gdb/testsuite/gdb.asm/asm-source.exp
@@ -38,8 +38,7 @@ if [istarget "d10v-*-*"] then {
set asm-arch d10v
}
if { "${asm-arch}" == "" } {
- verbose "Skipping assembly source test -- not implemented for this target."
- return
+ gdb_suppress_entire_file "Assembly source test -- not implemented for this target."
}
set testfile "asm-source"
diff --git a/gdb/testsuite/gdb.base/restore.exp b/gdb/testsuite/gdb.base/restore.exp
index 2ff7ad15075..03c2941f431 100644
--- a/gdb/testsuite/gdb.base/restore.exp
+++ b/gdb/testsuite/gdb.base/restore.exp
@@ -79,7 +79,7 @@ proc restore_tests { } {
for {set var 1} {$var <= $c} {incr var} {
set expected [expr 0x7eeb + $var]
gdb_test "print l$var" " = $expected" \
- "caller$c called callee$e; variable l$var restored"
+ "caller$c called callee$e; variable l$var restored to $expected"
}
}
}