From: uros Date: Wed, 1 Feb 2012 19:32:42 +0000 (+0000) Subject: * go.test/go-test.exp (go-gc-tests): xfail test/nilptr.go runtime X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=c66706ff62aab969f25b474f10e094b345aa6a3d * go.test/go-test.exp (go-gc-tests): xfail test/nilptr.go runtime test on alpha*-*-*. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183811 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9e655c8d1a6..6cf8868c0fb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-02-01 Uros Bizjak + + * go.test/go-test.exp (go-gc-tests): xfail test/nilptr.go runtime + test on alpha*-*-*. + 2012-02-01 Tobias Burnus PR fortran/52024 diff --git a/gcc/testsuite/go.test/go-test.exp b/gcc/testsuite/go.test/go-test.exp index c7383727e02..d5f2f4e4797 100644 --- a/gcc/testsuite/go.test/go-test.exp +++ b/gcc/testsuite/go.test/go-test.exp @@ -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.