Commit 22d87829 by Ian Lance Taylor Committed by Ian Lance Taylor

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
parent 14e50d35
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> 2012-02-11 Richard Sandiford <rdsandiford@googlemail.com>
PR rtl-optimization/52175 PR rtl-optimization/52175
......
...@@ -302,9 +302,9 @@ proc go-gc-tests { } { ...@@ -302,9 +302,9 @@ proc go-gc-tests { } {
} }
# Handle certain tests in a target-dependant way. # 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] } { if { [string match "*go.test/test/nilptr.go" $test] } {
go-execute-xfail $test untested $test
continue continue
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment