1999-05-03 07:29:11 +00:00
|
|
|
# Test gasp.
|
|
|
|
|
2002-02-22 11:59:50 +00:00
|
|
|
# GASP is now deprecated (and not built by default)
|
2002-02-22 12:00:38 +00:00
|
|
|
# so if it does not exist, do not test it.
|
2002-02-22 11:37:41 +00:00
|
|
|
global GASP
|
|
|
|
if {![info exists GASP] || ! [file exists $GASP] } then {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
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"
|
|
|
|
}
|