Commit 4e520eb4 by Uros Bizjak Committed by Uros Bizjak

go-test.exp (go-gc-tests): Don't run peano.go on systems which don't support -fsplit-stack.

	* go.test/go-test.exp (go-gc-tests): Don't run peano.go on systems
	which don't support -fsplit-stack.  Skip rotate[0123].go tests.

From-SVN: r206470
parent c7b0a171
2014-01-09 Uros Bizjak <ubizjak@gmail.com>
* go.test/go-test.exp (go-gc-tests): Don't run peano.go on systems
which don't support -fsplit-stack. Skip rotate[0123].go tests.
2014-01-09 Balaji V. Iyer <balaji.v.iyer@intel.com>
PR testsuite/59524
......
......@@ -400,17 +400,16 @@ proc go-gc-tests { } {
}
if { ( [file tail $test] == "select2.go" \
|| [file tail $test] == "stack.go" ) \
|| [file tail $test] == "stack.go" \
|| [file tail $test] == "peano.go" ) \
&& ! [check_effective_target_split_stack] } {
# chan/select2.go fails on targets without split stack,
# because they allocate a large stack segment that blows
# out the memory calculations.
# These tests fails on targets without split stack.
untested $name
continue
}
if { [file tail $test] == "rotate.go" } {
# This test produces a temporary file that takes too long
if [string match "*go.test/test/rotate\[0123\].go" $test] {
# These tests produces a temporary file that takes too long
# to compile--5 minutes on my laptop without optimization.
# When compiling without optimization it tests nothing
# useful, since the point of the test is to see whether
......
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