mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 13:27:26 +08:00
* testsuite/Makefile.in: Use gasp tests.
* testsuite/config/default.exp: Add gasp stuff.
This commit is contained in:
@ -106,6 +106,7 @@ check: site.exp
|
|||||||
TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
|
TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
$(RUNTEST) $(RUNTESTFLAGS) --tool gas
|
$(RUNTEST) $(RUNTESTFLAGS) --tool gas
|
||||||
|
$(RUNTEST) $(RUNTESTFLAGS) --tool gasp
|
||||||
|
|
||||||
force:
|
force:
|
||||||
|
|
||||||
|
@ -2,8 +2,12 @@ load_lib gas-defs.exp
|
|||||||
|
|
||||||
global AS
|
global AS
|
||||||
if ![info exists AS] then {
|
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
|
global ASFLAGS
|
||||||
@ -11,4 +15,14 @@ if ![info exists ASFLAGS] then {
|
|||||||
set ASFLAGS ""
|
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
|
gas_init
|
||||||
|
Reference in New Issue
Block a user