aboutsummaryrefslogtreecommitdiff
path: root/gas/testsuite
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1995-08-01 03:11:52 +0000
committerSteve Chamberlain <sac@cygnus>1995-08-01 03:11:52 +0000
commit2994850346e6183247ba6c80807ea9816997945c (patch)
tree7a1d8e2fd166683dc5521ad1d93cc4c404d1f279 /gas/testsuite
parente5025b18f4d5ecee27ead6d3625170144a5711aa (diff)
downloadgdb-2994850346e6183247ba6c80807ea9816997945c.zip
gdb-2994850346e6183247ba6c80807ea9816997945c.tar.gz
gdb-2994850346e6183247ba6c80807ea9816997945c.tar.bz2
* testsuite/Makefile.in: Use gasp tests.
* testsuite/config/default.exp: Add gasp stuff.
Diffstat (limited to 'gas/testsuite')
-rw-r--r--gas/testsuite/Makefile.in1
-rw-r--r--gas/testsuite/config/default.exp16
2 files changed, 16 insertions, 1 deletions
diff --git a/gas/testsuite/Makefile.in b/gas/testsuite/Makefile.in
index 143cac9..666ffe8 100644
--- a/gas/testsuite/Makefile.in
+++ b/gas/testsuite/Makefile.in
@@ -106,6 +106,7 @@ check: site.exp
TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
export TCL_LIBRARY ; fi ; \
$(RUNTEST) $(RUNTESTFLAGS) --tool gas
+ $(RUNTEST) $(RUNTESTFLAGS) --tool gasp
force:
diff --git a/gas/testsuite/config/default.exp b/gas/testsuite/config/default.exp
index b207f55..01ffe43 100644
--- a/gas/testsuite/config/default.exp
+++ b/gas/testsuite/config/default.exp
@@ -2,8 +2,12 @@ load_lib gas-defs.exp
global AS
if ![info exists AS] then {
- set AS [findfile $base_dir/as.new "as.new" [transform as]]
+ set AS [findfile $base_dir/../as.new "../as.new" [transform as]]
+}
+global GASP
+if ![info exists GASP] then {
+ set GASP [findfile $base_dir/../gasp.new "../gasp.new" [transform gasp]]
}
global ASFLAGS
@@ -11,4 +15,14 @@ if ![info exists ASFLAGS] then {
set ASFLAGS ""
}
+if ![info exists OBJDUMP] then {
+ set OBJDUMP [findfile $base_dir/../../binutils/objdump \
+ $base_dir/../../binutils/objdump \
+ [transform objdump]]
+}
+
+if ![info exists OBJDUMPFLAGS] then {
+ set OBJDUMPFLAGS {}
+}
+
gas_init