3 testsuite failures under hpux 10.20
Alan Modra
alan@linuxcare.com.au
Tue Jul 18 21:50:00 GMT 2000
More information about the Binutils mailing list
Tue Jul 18 21:50:00 GMT 2000
- Previous message (by thread): 3 testsuite failures under hpux 10.20
- Next message (by thread): 3 testsuite failures under hpux 10.20
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I'm checking this in to cure two of the failures dave@hiauly1.hia.nrc.ca reported. The easiest way to fix the SOM strings failure is just to disable the test for SOM - properly fixing the test requires looking in $DATA$ instead of .data Alan Modra -- Linuxcare. Support for the Revolution. gas/testuite/ChangeLog * gas/macros/macros.exp (test1): Run it for hppa*-*-linux*. (semi): Likewise. (strings): Don't run for hppa, except for hppa*-*-linux*. * gas/hppa/parse/linesepbug.s: Ensure we have whitespace before pseudos. Index: gas/hppa/parse/linesepbug.s =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/hppa/parse/linesepbug.s,v retrieving revision 1.2 diff -u -p -r1.2 linesepbug.s --- linesepbug.s 1999/08/30 20:09:00 1.2 +++ linesepbug.s 2000/07/19 04:37:27 @@ -8,5 +8,5 @@ ; selectors to make sure they're handled correctly. foo: - .WORD 0 !.IMPORT $bar$,DATA + .WORD 0! .IMPORT $bar$,DATA Index: gas/macros/macros.exp =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/macros/macros.exp,v retrieving revision 1.3 diff -u -p -r1.3 macros.exp --- macros.exp 2000/06/20 13:52:30 1.3 +++ macros.exp 2000/07/19 04:37:29 @@ -1,6 +1,6 @@ # Run some tests of gas macros. -if ![istarget hppa*-*-*] { +if { ![istarget hppa*-*-*] || [istarget *-*-linux*] } { run_dump_test test1 } @@ -19,11 +19,13 @@ if ![istarget *c54x*-*-*] { gas_test_error "err.s" "" "macro infinite recursion" case $target_triplet in { - { hppa*-*-* } { } + { hppa*-*-* } { if [istarget *-*-linux*] { run_dump_test semi } } { *c54x*-*-* } { } default { run_dump_test semi } } -run_dump_test strings +if { ![istarget hppa*-*-*] || [istarget *-*-linux*] } { + run_dump_test strings +}
- Previous message (by thread): 3 testsuite failures under hpux 10.20
- Next message (by thread): 3 testsuite failures under hpux 10.20
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list