i860 tests causing all other targets to abort testsuite runs

Richard Earnshaw rearnsha@arm.com
Fri May 23 11:09:00 GMT 2003


The i860.exp control file was calling exit when the target wasn't an i860. 
 That causes the whole testsuite run to be abandoned -- not a good idea.

Committed as obvious.

2003-05-23  Richard Earnshaw  <rearnsha@arm.com>

	* gas/i860/i860.exp: Don't call exit if the target isn't an i860.


-------------- next part --------------
Index: i860.exp
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/i860/i860.exp,v
retrieving revision 1.1
diff -p -r1.1 i860.exp
*** i860.exp	21 May 2003 01:28:55 -0000	1.1
--- i860.exp	23 May 2003 11:01:19 -0000
***************
*** 1,12 ****
  # i860 assembler testsuite.
  
! if ![istarget i860-*-*] {
!     exit
! }
! 
! foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/*.s]] {
!     set file [file tail $file]
!     set file [file rootname $file]
!     run_dump_test "$file"
! }
! 
--- 1,9 ----
  # i860 assembler testsuite.
  
! if [istarget i860-*-*] {
!     foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/*.s]] {
!         set file [file tail $file]
!         set file [file rootname $file]
!         run_dump_test "$file"
!     }
! }
\ No newline at end of file


More information about the Binutils mailing list