Commit ebe8daca by Ian Lance Taylor Committed by Ian Lance Taylor

re PR go/48501 (64bit-out.go, select5-out.go, tmp.go compilation times out)

	PR go/48501
	* go.test/go-test.exp (go-gc-tests): Disable optimizations when
	compiling generated file for 64bit and index tests.

From-SVN: r184219
parent 95787705
2012-02-14 Ian Lance Taylor <iant@google.com>
PR go/48501
* go.test/go-test.exp (go-gc-tests): Disable optimizations when
compiling generated file for 64bit and index tests.
2012-02-14 Uros Bizjak <ubizjak@gmail.com>
* gcc.dg/lower-subreg-1.c: Fix and simplify target selector.
......
......@@ -433,7 +433,12 @@ proc go-gc-tests { } {
} else {
pass "$name execution"
file delete $base-out.x
# Disable optimizations as this test takes a long time
# to compile.
set hold $TORTURE_OPTIONS
set TORTURE_OPTIONS [ list { -O0 -g }]
go-torture-execute "./$base-out.go"
set TORTURE_OPTIONS $hold
}
file delete $base-out.go
}
......@@ -940,7 +945,12 @@ proc go-gc-tests { } {
} else {
pass "$name execution 0"
file delete tmp.x
# Disable optimizations as this test takes a long time
# to compile.
set hold $TORTURE_OPTIONS
set TORTURE_OPTIONS [ list { -O0 -g }]
go-torture-execute "./tmp.go"
set TORTURE_OPTIONS $hold
}
if { [catch "exec $output_file -pass 1 >tmp.go"] != 0 } {
fail "$name execution 1"
......
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