re PR go/66406 (go.test/test/nilptr.go FAILs with PIE)

PR go/66406
	* go.test/go-test.exp (go-gc-tests): Skip nilptr.go if PIE.

From-SVN: r230697
This commit is contained in:
Ian Lance Taylor 2015-11-21 01:47:13 +00:00 committed by Ian Lance Taylor
parent eaa7bc3388
commit 65310691f8
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2015-11-20 Ian Lance Taylor <iant@google.com>
PR go/66406
* go.test/go-test.exp (go-gc-tests): Skip nilptr.go if PIE.
2015-11-20 Mike Stump <mikestump@comcast.net>
* g++.dg/init/vbase1.C: Only run on x86_64-*-* as this testcase

View file

@ -398,6 +398,11 @@ proc go-gc-tests { } {
}
}
if [check_effective_target_pie_enabled] {
untested $test
continue
}
if { [file tail $test] == "init1.go" } {
# This tests whether GC runs during init, which for gccgo
# it currently does not.