diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index b7de27d936..4ff663f89b 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2011-02-25 H.J. Lu + + PR ld/12516 + * ld-elf/dynamic1.d: New. + * ld-elf/dynamic1.ld: Likewise. + * ld-elf/dynamic1.s: Likewise. + 2011-02-25 Alan Modra * ld-mn10300/i135409-3.s: Correct .size label reference. diff --git a/ld/testsuite/ld-elf/dynamic1.d b/ld/testsuite/ld-elf/dynamic1.d new file mode 100644 index 0000000000..6a8ba55f40 --- /dev/null +++ b/ld/testsuite/ld-elf/dynamic1.d @@ -0,0 +1,10 @@ +#ld: -shared -T dynamic1.ld +#readelf: -l --wide +#target: *-*-linux* *-*-gnu* + +#... + Section to Segment mapping: + Segment Sections... +#... + 0[1-9] .dynamic[ ]* +#pass diff --git a/ld/testsuite/ld-elf/dynamic1.ld b/ld/testsuite/ld-elf/dynamic1.ld new file mode 100644 index 0000000000..d110bf77e3 --- /dev/null +++ b/ld/testsuite/ld-elf/dynamic1.ld @@ -0,0 +1,8 @@ +SECTIONS +{ + . = SIZEOF_HEADERS; + .text : { *(.text) } + .data : { *(.data) } + .data1 : { KEEP (*(.data1)) } + .dynamic : { *(.dynamic) } +} diff --git a/ld/testsuite/ld-elf/dynamic1.s b/ld/testsuite/ld-elf/dynamic1.s new file mode 100644 index 0000000000..f1caf0e5aa --- /dev/null +++ b/ld/testsuite/ld-elf/dynamic1.s @@ -0,0 +1,2 @@ +.section .data1,"aw" +.balign 16