Add 2 more tests for PR ld/21884
PR ld/21884 * testsuite/ld-i386/i386.exp: Run pr21884. * testsuite/ld-x86-64/x86-64.exp: Likewise. * testsuite/ld-i386/pr21884.d: New file. * testsuite/ld-i386/pr21884.t: Likewise. * testsuite/ld-x86-64/pr21884.d: Likewise. * testsuite/ld-x86-64/pr21884.t: Likewise.
This commit is contained in:
parent
76db0a2e17
commit
9593aade74
10
ld/ChangeLog
10
ld/ChangeLog
@ -1,3 +1,13 @@
|
||||
2017-08-11 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR ld/21884
|
||||
* testsuite/ld-i386/i386.exp: Run pr21884.
|
||||
* testsuite/ld-x86-64/x86-64.exp: Likewise.
|
||||
* testsuite/ld-i386/pr21884.d: New file.
|
||||
* testsuite/ld-i386/pr21884.t: Likewise.
|
||||
* testsuite/ld-x86-64/pr21884.d: Likewise.
|
||||
* testsuite/ld-x86-64/pr21884.t: Likewise.
|
||||
|
||||
2017-08-10 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* scripttempl/pep.sc: Enclose __CTOR_LIST__, ___CTOR_LIST__,
|
||||
|
@ -437,6 +437,7 @@ run_dump_test "property-x86-shstk4"
|
||||
run_dump_test "property-x86-shstk5"
|
||||
run_dump_test "pie1"
|
||||
run_dump_test "pie1-nacl"
|
||||
run_dump_test "pr21884"
|
||||
|
||||
if { !([istarget "i?86-*-linux*"]
|
||||
|| [istarget "i?86-*-gnu*"]
|
||||
|
9
ld/testsuite/ld-i386/pr21884.d
Normal file
9
ld/testsuite/ld-i386/pr21884.d
Normal file
@ -0,0 +1,9 @@
|
||||
#source: dummy.s
|
||||
#as: --32
|
||||
#ld: -m elf_i386 -T pr21884.t -b binary
|
||||
#objdump: -b binary -s
|
||||
|
||||
.*: file format binary
|
||||
|
||||
Contents of section .data:
|
||||
#pass
|
11
ld/testsuite/ld-i386/pr21884.t
Normal file
11
ld/testsuite/ld-i386/pr21884.t
Normal file
@ -0,0 +1,11 @@
|
||||
OUTPUT_FORMAT("elf32-i386");
|
||||
OUTPUT_ARCH(i386);
|
||||
|
||||
ENTRY(_start);
|
||||
SECTIONS {
|
||||
. = 0x10000;
|
||||
_start = . ;
|
||||
.data : {
|
||||
*(.data)
|
||||
}
|
||||
}
|
9
ld/testsuite/ld-x86-64/pr21884.d
Normal file
9
ld/testsuite/ld-x86-64/pr21884.d
Normal file
@ -0,0 +1,9 @@
|
||||
#source: dummy.s
|
||||
#as: --64
|
||||
#ld: -m elf_x86_64 -T pr21884.t -b binary
|
||||
#objdump: -b binary -s
|
||||
|
||||
.*: file format binary
|
||||
|
||||
Contents of section .data:
|
||||
#pass
|
11
ld/testsuite/ld-x86-64/pr21884.t
Normal file
11
ld/testsuite/ld-x86-64/pr21884.t
Normal file
@ -0,0 +1,11 @@
|
||||
OUTPUT_FORMAT("elf64-x86-64");
|
||||
OUTPUT_ARCH(i386:x86-64);
|
||||
|
||||
ENTRY(_start);
|
||||
SECTIONS {
|
||||
. = 0x10000;
|
||||
_start = . ;
|
||||
.data : {
|
||||
*(.data)
|
||||
}
|
||||
}
|
@ -365,6 +365,7 @@ run_dump_test "property-x86-shstk4"
|
||||
run_dump_test "property-x86-shstk4-x32"
|
||||
run_dump_test "property-x86-shstk5"
|
||||
run_dump_test "property-x86-shstk5-x32"
|
||||
run_dump_test "pr21884"
|
||||
|
||||
if { ![istarget "x86_64-*-linux*"] && ![istarget "x86_64-*-nacl*"]} {
|
||||
return
|
||||
|
Loading…
x
Reference in New Issue
Block a user