Commit 25f10bd4 by Uros Bizjak Committed by Uros Bizjak

go-test.exp (go-gc-tests): xfail test/nilptr.go runtime test on alpha*-*-*.

	* go.test/go-test.exp (go-gc-tests): xfail test/nilptr.go runtime
	test on alpha*-*-*.

From-SVN: r183811
parent 9af4cb95
2012-02-01 Uros Bizjak <ubizjak@gmail.com>
* go.test/go-test.exp (go-gc-tests): xfail test/nilptr.go runtime
test on alpha*-*-*.
2012-02-01 Tobias Burnus <burnus@net-b.de> 2012-02-01 Tobias Burnus <burnus@net-b.de>
PR fortran/52024 PR fortran/52024
......
...@@ -286,25 +286,28 @@ proc go-gc-tests { } { ...@@ -286,25 +286,28 @@ proc go-gc-tests { } {
# Skip certain tests if target is RTEMS OS. # Skip certain tests if target is RTEMS OS.
if [istarget "*-*-rtems*"] { if [istarget "*-*-rtems*"] {
if { [string match "*go.test/test/args.go" \ if { [string match "*go.test/test/args.go" $test] \
$test] \ || [string match "*go.test/test/env.go" $test] } {
|| [string match "*go.test/test/env.go" \
$test] } {
untested "$name: uses the command-line or environment variables" untested "$name: uses the command-line or environment variables"
continue continue
} }
if { [string match "*go.test/test/stack.go" \ if { [string match "*go.test/test/stack.go" $test] \
$test] \ || [string match "*go.test/test/peano.go" $test] \
|| [string match "*go.test/test/peano.go" \ || [string match "*go.test/test/chan/goroutines.go" $test] } {
$test] \
|| [string match "*go.test/test/chan/goroutines.go" \
$test] } {
untested "$name: has very high memory requirement" untested "$name: has very high memory requirement"
continue continue
} }
} }
# Handle certain tests in a target-dependant way.
if [istarget "alpha*-*-*"] {
if { [string match "*go.test/test/nilptr.go" $test] } {
go-execute-xfail $test
continue
}
}
if { [string match "*bug347*" $test] \ if { [string match "*bug347*" $test] \
|| [string match "*bug348*" $test] } { || [string match "*bug348*" $test] } {
# These bugs rely on runtime.Caller which currently fails. # These bugs rely on runtime.Caller which currently fails.
......
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