XPASS for hppa-linux?
H . J . Lu
hjl@lucon.org
Tue Apr 23 09:20:00 GMT 2002
On Tue, Apr 23, 2002 at 04:40:12PM +0930, Alan Modra wrote:
> On Mon, Apr 22, 2002 at 11:16:54PM -0700, H . J . Lu wrote:
> > I got
> >
> > Running
> > /home/hjl/work/linux/import/binutils/gas/testsuite/gas/hppa/parse/parse.
> > exp ...
> > XPASS: line separator bug
> >
> > parse.exp has
> > if [istarget hppa*-*-*] then {
> > # GAS-2.0 does not always parse ! as a line separator when it should.
> > setup_xfail hppa*-*-*
> > gas_test "linesepbug.s" "" "" "line separator bug"
> >
> > Has this bug been fixed?
>
> No. It's a testsuite bug. Failures should be expected for all
> hppa*-*-* except hppa*-*-linux* and hppa*-*-netbsd*. ie. it's
> expected to fail for hppa targets that define LABELS_WITHOUT_COLONS.
> Please go ahead and fix it.
>
I checked it in.
H.J.
---
2002-04-23 H.J. Lu <hjl@gnu.org>
* gas/hppa/parse/parse.exp: Don't expect failure on line separator
test on hppa*-*-linux* nor hppa*-*-netbsd*.
Index: parse.exp
===================================================================
RCS file: /work/cvs/gnu/binutils/gas/testsuite/gas/hppa/parse/parse.exp,v
retrieving revision 1.1.1.6
diff -u -p -r1.1.1.6 parse.exp
--- parse.exp 2001/11/23 19:29:46 1.1.1.6
+++ parse.exp 2002/04/23 16:10:01
@@ -119,8 +119,11 @@ proc do_valid_align_tests {} {
}
if [istarget hppa*-*-*] then {
- # GAS-2.0 does not always parse ! as a line separator when it should.
- setup_xfail hppa*-*-*
+ if { ![istarget hppa*-*-linux*]
+ && ![istarget hppa*-*-netbsd*] } {
+ # GAS-2.0 does not always parse ! as a line separator when it should.
+ setup_xfail hppa*-*-*
+ }
gas_test "linesepbug.s" "" "" "line separator bug"
# Make sure GAS accepts syntax for accessing static data.
More information about the Binutils
mailing list