diff options
author | Jeff Law <law@redhat.com> | 2001-11-23 16:26:01 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2001-11-23 16:26:01 +0000 |
commit | c8060cba7c6007c905624559991707be153cf7c9 (patch) | |
tree | 86984b3f1bd57301f1d23b220799a9f411bf9ce7 | |
parent | 7377433e61dabcae263c8d5972cdb49b88c63b91 (diff) | |
download | gdb-c8060cba7c6007c905624559991707be153cf7c9.zip gdb-c8060cba7c6007c905624559991707be153cf7c9.tar.gz gdb-c8060cba7c6007c905624559991707be153cf7c9.tar.bz2 |
* gas/all/gas.exp (incbin): Do not run on the PA.
-rw-r--r-- | gas/testsuite/ChangeLog | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/all/gas.exp | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 699ae17..0e2994a 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,5 +1,7 @@ Fri Nov 23 09:20:43 2001 Jeffrey A Law (law@cygnus.com) + * gas/all/gas.exp (incbin): Do not run on the PA. + * gas/hppa/parse/parse.exp: Expect failure on line separator bug. 2001-11-16 Chris Demetriou <cgd@broadcom.cOm> diff --git a/gas/testsuite/gas/all/gas.exp b/gas/testsuite/gas/all/gas.exp index 87d3bac..4173dec 100644 --- a/gas/testsuite/gas/all/gas.exp +++ b/gas/testsuite/gas/all/gas.exp @@ -152,8 +152,11 @@ proc test_cond {} { } } +# This test is not suitable for the PA for various reasons +# not limited to the fact that it depends on specific section +# names appearing in the output file. # again, p2align doesn't work on c54x target -if ![istarget *c54x*-*-*] then { +if { ![istarget *c54x*-*-*] ![istarget hppa*-*-*] } then { test_cond run_dump_test incbin } |