From: Ian Lance Taylor Date: Sun, 12 Feb 2012 06:00:34 +0000 (+0000) Subject: re PR go/51874 (Many libgo testsuite failures on IRIX) X-Git-Tag: upstream/12.2.0~78033 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22d87829789be10d2b3a88c2ee6253d88ff88d6b;p=platform%2Fupstream%2Fgcc.git re PR go/51874 (Many libgo testsuite failures on IRIX) PR go/51874 * go.test/go-test.exp (go-gc-tests): Don't run nilptr test on SPARC Solaris. Don't run the test at all on systems where it may not work, rather than xfailing it. From-SVN: r184137 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 03fba54..938abda 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2012-02-11 Ian Lance Taylor + + PR go/51874 + * go.test/go-test.exp (go-gc-tests): Don't run nilptr test on + SPARC Solaris. Don't run the test at all on systems where it may + not work, rather than xfailing it. + 2012-02-11 Richard Sandiford PR rtl-optimization/52175 diff --git a/gcc/testsuite/go.test/go-test.exp b/gcc/testsuite/go.test/go-test.exp index 6f0cd38..3e51b19 100644 --- a/gcc/testsuite/go.test/go-test.exp +++ b/gcc/testsuite/go.test/go-test.exp @@ -302,9 +302,9 @@ proc go-gc-tests { } { } # Handle certain tests in a target-dependant way. - if [istarget "alpha*-*-*"] { + if { [istarget "alpha*-*-*"] || [istarget "sparc*-*-solaris*"] } { if { [string match "*go.test/test/nilptr.go" $test] } { - go-execute-xfail $test + untested $test continue } }