aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2007-07-23 14:03:33 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2007-07-23 14:03:33 +0000
commitdc89df6af02e57a0087729705ceebfdd36e86654 (patch)
tree17865f3e3cc2ede62d30fed77d698fb4216a4c57 /gas
parenteb07545517ef2f5ee53bff4f2b8271f43b593ff6 (diff)
downloadbinutils-dc89df6af02e57a0087729705ceebfdd36e86654.zip
binutils-dc89df6af02e57a0087729705ceebfdd36e86654.tar.gz
binutils-dc89df6af02e57a0087729705ceebfdd36e86654.tar.bz2
gas/testsuite/
* lib/gas-defs.exp (run_list_test): Make the options optional. * gas/cr16/cr16.exp (run_list_test): Delete.
Diffstat (limited to 'gas')
-rw-r--r--gas/testsuite/ChangeLog5
-rw-r--r--gas/testsuite/gas/cr16/cr16.exp13
-rw-r--r--gas/testsuite/lib/gas-defs.exp4
3 files changed, 7 insertions, 15 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog
index 396f982..9934395 100644
--- a/gas/testsuite/ChangeLog
+++ b/gas/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-23 Richard Sandiford <richard@codesourcery.com>
+
+ * lib/gas-defs.exp (run_list_test): Make the options optional.
+ * gas/cr16/cr16.exp (run_list_test): Delete.
+
2007-07-19 Nick Clifton <nickc@redhat.com>
PR gas/4804
diff --git a/gas/testsuite/gas/cr16/cr16.exp b/gas/testsuite/gas/cr16/cr16.exp
index 6697c33..9285da8 100644
--- a/gas/testsuite/gas/cr16/cr16.exp
+++ b/gas/testsuite/gas/cr16/cr16.exp
@@ -2,19 +2,6 @@
# Driver for CR16 assembler testsuite
#
-proc run_list_test { name opts } {
- global srcdir subdir
- set testname "cr16 $name"
- set file $srcdir/$subdir/$name
- gas_run ${name}.s $opts ">&dump.out"
- if {[regexp_diff "dump.out" "${file}.l"] } {
- fail $testname
- verbose "output is [file_contents "dump.out"]" 2
- return
- }
- pass $testname
-}
-
if ![istarget cr16-*-*] {
return
}
diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp
index c83cf22..8d4902a 100644
--- a/gas/testsuite/lib/gas-defs.exp
+++ b/gas/testsuite/lib/gas-defs.exp
@@ -890,14 +890,14 @@ if ![string length [info proc prune_warnings]] {
}
}
-# run_list_test NAME OPTS (optional): TESTNAME
+# run_list_test NAME (optional): OPTS TESTNAME
#
# Assemble the file "NAME.d" with command line options OPTS and
# compare the assembler standard error output against thee regular
# expressions given in the file "NAME.l". If TESTNAME is provided,
# it will be used as the name of the test.
-proc run_list_test { name opts {testname {}} } {
+proc run_list_test { name {opts {}} {testname {}} } {
global srcdir subdir
if { [string length $testname] == 0 } then {
set testname "[file tail $subdir] $name"