new file.
This commit is contained in:
parent
b74e86ecf5
commit
06c3153964
1 changed files with 35 additions and 0 deletions
35
gas/testsuite/gasp/gasp.exp
Normal file
35
gas/testsuite/gasp/gasp.exp
Normal file
|
@ -0,0 +1,35 @@
|
|||
|
||||
|
||||
proc gasp_test { testname } {
|
||||
global GASP
|
||||
global srcdir
|
||||
|
||||
send_log "$srcdir/lib/run $GASP -s $testname.asm -o gasp.out \n"
|
||||
catch "exec $srcdir/lib/run $GASP -I$srcdir/gasp -s $testname.asm -o gasp.out" errs
|
||||
catch "exec diff gasp.out $testname.out" diffs
|
||||
if ![string match "" $diffs] {
|
||||
send_log "$diffs\n"
|
||||
verbose $diffs
|
||||
fail $testname
|
||||
send_log "exec cat gasp.out"
|
||||
return 0
|
||||
} else {
|
||||
pass $testname
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
set testname "GASP"
|
||||
|
||||
foreach src [ lsort [ glob $srcdir/gasp/*.asm ] ] {
|
||||
regsub -all ".asm" $src "" t
|
||||
gasp_test $t
|
||||
}
|
||||
|
||||
|
||||
# FIXME: this is here cause of a bug in DejaGnu 1.1.1. When it is no longer
|
||||
# in use, then this can be removed.
|
||||
if [info exists errorInfo] then {
|
||||
unset errorInfo
|
||||
}
|
||||
|
Loading…
Reference in a new issue