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
This commit is contained in:
Uros Bizjak 2012-02-01 20:32:42 +01:00 committed by Uros Bizjak
parent 9af4cb9545
commit 25f10bd4bb
2 changed files with 18 additions and 10 deletions

View file

@ -1,3 +1,8 @@
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

View file

@ -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.