diff options
author | Ian Lance Taylor <iant@google.com> | 2012-02-12 06:00:34 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-02-12 06:00:34 +0000 |
commit | 22d87829789be10d2b3a88c2ee6253d88ff88d6b (patch) | |
tree | d5e7f3ff0f73610fe22d3d0c30d424bc8b3e1d52 | |
parent | 14e50d352e7a701905c895d1b77130d970a9444c (diff) | |
download | gcc-22d87829789be10d2b3a88c2ee6253d88ff88d6b.zip gcc-22d87829789be10d2b3a88c2ee6253d88ff88d6b.tar.gz gcc-22d87829789be10d2b3a88c2ee6253d88ff88d6b.tar.bz2 |
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
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/go.test/go-test.exp | 4 |
2 files changed, 9 insertions, 2 deletions
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 <iant@google.com> + + 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 <rdsandiford@googlemail.com> 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 } } |