aboutsummaryrefslogtreecommitdiff
path: root/gas/testsuite/gasp/gasp.exp
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2002-12-02 15:42:15 +0000
committerNick Clifton <nickc@redhat.com>2002-12-02 15:42:15 +0000
commitfea179166e09be4b64b3d961537534ca02ab0e9d (patch)
tree73a99a786ac53651242b510d7479fecd73448c34 /gas/testsuite/gasp/gasp.exp
parent12aae7ea1737e2692bd6e0f6c499f06a9d9d1565 (diff)
downloadgdb-fea179166e09be4b64b3d961537534ca02ab0e9d.zip
gdb-fea179166e09be4b64b3d961537534ca02ab0e9d.tar.gz
gdb-fea179166e09be4b64b3d961537534ca02ab0e9d.tar.bz2
Remove GASP.
Diffstat (limited to 'gas/testsuite/gasp/gasp.exp')
-rw-r--r--gas/testsuite/gasp/gasp.exp40
1 files changed, 0 insertions, 40 deletions
diff --git a/gas/testsuite/gasp/gasp.exp b/gas/testsuite/gasp/gasp.exp
deleted file mode 100644
index e8b007eb..0000000
--- a/gas/testsuite/gasp/gasp.exp
+++ /dev/null
@@ -1,40 +0,0 @@
-# Test gasp.
-
-# GASP is now deprecated (and not built by default)
-# so if it does not exist, do not test it.
-global GASP
-if {![info exists GASP] || ! [file exists $GASP] } then {
- return 1
-}
-
-proc gasp_test { filename testname opt } {
- global GASP
- global srcdir
- global host_triplet
-
- send_log "$srcdir/lib/run $GASP -I$srcdir/gasp -s $opt $filename.asm -o gasp.out\n"
- catch "exec $srcdir/lib/run $GASP -I$srcdir/gasp -s $opt $filename.asm -o gasp.out" errs
- catch "exec diff gasp.out $filename.out" diffs
- set diffs [prune_warnings $diffs]
- if ![string match "" $diffs] {
- send_log "$diffs\n"
- verbose $diffs
- fail $testname
- return 0
- } else {
- pass $testname
- }
-
-}
-
-foreach src [ lsort [ glob $srcdir/gasp/*.asm ] ] {
- regsub -all ".asm" $src "" t
- regsub "^.*/(\[^/\]*)$" $t "gasp \\1" testname
- gasp_test $t $testname ""
-}
-
-foreach src [ lsort [ glob $srcdir/gasp/mri/*.asm ] ] {
- regsub -all ".asm" $src "" t
- regsub "^.*/(\[^/\]*)$" $t "gasp MRI \\1" testname
- gasp_test $t $testname "-M"
-}