* lib/gas-defs.exp (run_dump_test): If the program to run does not

exist, mark the test as untested.
This commit is contained in:
Ian Lance Taylor 1995-08-16 21:13:52 +00:00
parent df0d80dbed
commit a46c0ed860
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,8 @@
Wed Aug 16 12:24:12 1995 Ian Lance Taylor <ian@cygnus.com>
* lib/gas-defs.exp (run_dump_test): If the program to run does not
exist, mark the test as untested.
* gas/mri/mri.exp: Add setup_xfail for i960 b.out targets for
common test.

View File

@ -266,6 +266,11 @@ proc run_dump_test { name } {
return
}
if { [which $binary] == 0 } {
untested $testname
return
}
if { $progopts1 == "" } { set $progopts1 "-r" }
verbose "running $binary $progopts $progopts1" 3
if { $program == "objcopy" } {