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>
PR fortran/52024
......
......@@ -286,25 +286,28 @@ proc go-gc-tests { } {
# Skip certain tests if target is RTEMS OS.
if [istarget "*-*-rtems*"] {
if { [string match "*go.test/test/args.go" \
$test] \
|| [string match "*go.test/test/env.go" \
$test] } {
if { [string match "*go.test/test/args.go" $test] \
|| [string match "*go.test/test/env.go" $test] } {
untested "$name: uses the command-line or environment variables"
continue
}
if { [string match "*go.test/test/stack.go" \
$test] \
|| [string match "*go.test/test/peano.go" \
$test] \
|| [string match "*go.test/test/chan/goroutines.go" \
$test] } {
if { [string match "*go.test/test/stack.go" $test] \
|| [string match "*go.test/test/peano.go" $test] \
|| [string match "*go.test/test/chan/goroutines.go" $test] } {
untested "$name: has very high memory requirement"
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] \
|| [string match "*bug348*" $test] } {
# 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