From: H.J. Lu Date: Wed, 20 Apr 2016 18:12:06 +0000 (-0700) Subject: Add ld-x86-64/pie2 test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=126697d1e4cb6e5936ecb62dafe57880717473ab;p=binutils-gdb.git Add ld-x86-64/pie2 test * testsuite/ld-x86-64/pie2.d: New file. * testsuite/ld-x86-64/pie2.s: Likewise. * testsuite/ld-x86-64/x86-64.exp: Run pie2. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index efa69f95efe..0ce4e2dcc44 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2016-04-20 H.J. Lu + + * testsuite/ld-x86-64/pie2.d: New file. + * testsuite/ld-x86-64/pie2.s: Likewise. + * testsuite/ld-x86-64/x86-64.exp: Run pie2. + 2016-04-20 H.J. Lu PR ld/19969 diff --git a/ld/testsuite/ld-x86-64/pie2.d b/ld/testsuite/ld-x86-64/pie2.d new file mode 100644 index 00000000000..ef9f58acb7a --- /dev/null +++ b/ld/testsuite/ld-x86-64/pie2.d @@ -0,0 +1,3 @@ +#as: --64 +#ld: -pie -melf_x86_64 +#error: .*relocation R_X86_64_32 against symbol `foo' can not be used when making a shared object; recompile with -fPIC diff --git a/ld/testsuite/ld-x86-64/pie2.s b/ld/testsuite/ld-x86-64/pie2.s new file mode 100644 index 00000000000..7c489a15221 --- /dev/null +++ b/ld/testsuite/ld-x86-64/pie2.s @@ -0,0 +1,8 @@ + .text + .global _start +_start: + .long foo + .data + .globl foo +foo: + .byte 0 diff --git a/ld/testsuite/ld-x86-64/x86-64.exp b/ld/testsuite/ld-x86-64/x86-64.exp index fbd39afa9e9..b923fba4e47 100644 --- a/ld/testsuite/ld-x86-64/x86-64.exp +++ b/ld/testsuite/ld-x86-64/x86-64.exp @@ -249,6 +249,7 @@ run_dump_test "pr14215" run_dump_test "pr14207" run_dump_test "gotplt1" run_dump_test "pie1" +run_dump_test "pie2" run_dump_test "largecomm-1a" run_dump_test "largecomm-1b" run_dump_test "largecomm-1c"