diff options
author | Alan Modra <amodra@gmail.com> | 2016-06-29 08:00:58 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2016-06-29 08:37:00 +0930 |
commit | bebf013204dd89601ecdaaeb1c5fcb3e8ac83b7d (patch) | |
tree | 48bf03ca5c8341c1e67082a42a5f13225ddbf307 /gold/testsuite | |
parent | 1275dd72471e6059d82685dd8a4d96e30e0f3afc (diff) | |
download | gdb-bebf013204dd89601ecdaaeb1c5fcb3e8ac83b7d.zip gdb-bebf013204dd89601ecdaaeb1c5fcb3e8ac83b7d.tar.gz gdb-bebf013204dd89601ecdaaeb1c5fcb3e8ac83b7d.tar.bz2 |
[GOLD] Modify script_test_12
Changes necessary to make this test pass on powerpc64.
* script_test_12.t: Delete .plt, specify 64k page size.
* script_test_12i.t: Likewise.
Diffstat (limited to 'gold/testsuite')
-rw-r--r-- | gold/testsuite/script_test_12.t | 3 | ||||
-rw-r--r-- | gold/testsuite/script_test_12i.t | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/gold/testsuite/script_test_12.t b/gold/testsuite/script_test_12.t index 4579c58..b34ec53 100644 --- a/gold/testsuite/script_test_12.t +++ b/gold/testsuite/script_test_12.t @@ -33,14 +33,13 @@ SECTIONS .rel.plt : { *(.rel.plt) } .rela.plt : { *(.rela.plt) } .init : { *(.init) } - .plt : { *(.plt) } .text : { *(.text) } .fini : { *(.fini) } .rodata : { *(.rodata .rodata.*) } .eh_frame_hdr : { *(.eh_frame_hdr) } .eh_frame : { *(.eh_frame) } - . = DATA_SEGMENT_ALIGN(0x1000, 0x1000); + . = DATA_SEGMENT_ALIGN(0x10000, 0x10000); .init_array : { __init_array_start = .; diff --git a/gold/testsuite/script_test_12i.t b/gold/testsuite/script_test_12i.t index af19cd6..0310e74 100644 --- a/gold/testsuite/script_test_12i.t +++ b/gold/testsuite/script_test_12i.t @@ -33,14 +33,13 @@ SECTIONS .rel.plt : { *(.rel.plt) } .rela.plt : { *(.rela.plt) } .init : { *(.init) } - .plt : { *(.plt) } .text : { *(.text) } .fini : { *(.fini) } .rodata : { *(.rodata .rodata.*) } .eh_frame_hdr : { *(.eh_frame_hdr) } .eh_frame : { *(.eh_frame) } - . = DATA_SEGMENT_ALIGN(0x1000, 0x1000); + . = DATA_SEGMENT_ALIGN(0x10000, 0x10000); .init_array : { __init_array_start = .; |