]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/testsuite/gas/ieee-fp/x930509a.exp
* configure.tgt (crisv32-*-*): Handle like cris-*-* for non-aout.
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / ieee-fp / x930509a.exp
CommitLineData
252b5132
RH
1# Reported 93/05/09 by Jim Wilson: IEEE single-precision FLT_MIN value gets
2# assembled incorrectly. (Off by one ulp.)
3
4proc dotest {} {
5 set testname "IEEE FLT_MIN, single-precision"
6 set x 0
7 gas_start "x930509a.s" "-al"
8 while 1 {
9 expect {
224de7a5
AM
10 -re " 00 ?00 ?80 ?00\[ \]+.single" { pass $testname; set x 1 }
11 -re " 00 ?80 ?00 ?00\[ \]+.single" { pass $testname; set x 1 }
12 -re ".single" { fail $testname; set x 1 }
252b5132
RH
13 -re "\[^\n\]*\n" { }
14 timeout { perror "timeout\n"; break }
15 eof { break }
16 }
17 }
18 gas_finish
252b5132 19
8ace442d
AM
20 # C54x alignment/addressing is different, so the listing looks different
21 # float encoding is tested in c54x-specific tests.
22 # No floating point support in assembly code for CRIS.
23 setup_xfail "arc*-*-*" "cris-*-*" "*c30*-*-*" "*c54x*-*-*" "*c80*-*-*"
24 setup_xfail "vax*-*-*"
25
26 if !$x then { fail "$testname (listing didn't match)" }
252b5132 27}