diff options
author | Ian Lance Taylor <iant@google.com> | 2015-11-21 01:47:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-11-21 01:47:13 +0000 |
commit | 65310691f80bb61e561f34d7500cd6336d625f49 (patch) | |
tree | 03b6954efe4363645f86483c27281a423d94ed06 /gcc/testsuite/go.test | |
parent | eaa7bc3388e1c620210b851f15b838045f4f0cca (diff) | |
download | gcc-65310691f80bb61e561f34d7500cd6336d625f49.zip gcc-65310691f80bb61e561f34d7500cd6336d625f49.tar.gz gcc-65310691f80bb61e561f34d7500cd6336d625f49.tar.bz2 |
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
Diffstat (limited to 'gcc/testsuite/go.test')
-rw-r--r-- | gcc/testsuite/go.test/go-test.exp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/testsuite/go.test/go-test.exp b/gcc/testsuite/go.test/go-test.exp index d57751c..fd3e6a0 100644 --- a/gcc/testsuite/go.test/go-test.exp +++ b/gcc/testsuite/go.test/go-test.exp @@ -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. |