diff options
| -rw-r--r-- | lld/test/ELF/section-name.s | 49 |
1 files changed, 32 insertions, 17 deletions
diff --git a/lld/test/ELF/section-name.s b/lld/test/ELF/section-name.s index f470c48c6a3..93cab7ef41f 100644 --- a/lld/test/ELF/section-name.s +++ b/lld/test/ELF/section-name.s @@ -1,6 +1,6 @@ # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t # RUN: ld.lld %t -o %tout -# RUN: llvm-readobj -sections %tout | FileCheck %s +# RUN: llvm-objdump --section-headers %tout | FileCheck %s # REQUIRES: x86 .global _start @@ -8,36 +8,51 @@ _start: .section .text.a,"ax" +.byte 0 .section .text.,"ax" +.byte 0 .section .rodata.a,"a" +.byte 0 .section .rodata,"a" +.byte 0 .section .data.a,"aw" +.byte 0 .section .data,"aw" +.byte 0 .section .bss.a,"",@nobits +.byte 0 .section .bss,"",@nobits +.byte 0 .section .foo.a,"aw" +.byte 0 .section .foo,"aw" +.byte 0 .section .data.rel.ro,"aw",%progbits +.byte 0 .section .data.rel.ro.a,"aw",%progbits +.byte 0 .section .data.rel.ro.local,"aw",%progbits +.byte 0 .section .data.rel.ro.local.a,"aw",%progbits +.byte 0 .section .tbss.foo,"aGwT",@nobits,foo,comdat +.byte 0 .section .gcc_except_table.foo,"aG",@progbits,foo,comdat +.byte 0 .section .tdata.foo,"aGwT",@progbits,foo,comdat +.byte 0 -// CHECK-NOT: Name: .rodata.a -// CHECK: Name: .rodata -// CHECK: Name: .gcc_except_table ({{.*}}) -// CHECK-NOT: Name: .text.a -// CHECK: Name: .text -// CHECK: Name: .tdata ({{.*}}) -// CHECK: Name: .tbss ({{.*}}) -// CHECK-NOT: Name: .data.rel.ro.a -// CHECK-NOT: Name: .data.rel.ro.local.a -// CHECK: Name: .data.rel.ro -// CHECK-NOT: Name: .data.a -// CHECK: Name: .data -// CHECK: Name: .foo.a -// CHECK: Name: .foo -// CHECK-NOT: Name: .bss.a -// CHECK: Name: .bss +// CHECK: 1 .rodata 00000002 +// CHECK: 2 .gcc_except_table 00000001 +// CHECK: 3 .text 00000002 +// CHECK: 4 .tdata 00000001 +// CHECK: 5 .tbss 00000001 +// CHECK: 6 .data.rel.ro 00000003 +// CHECK: 7 .data 00000003 +// CHECK: 8 .foo.a 00000001 +// CHECK: 9 .foo 00000001 +// CHECK: 10 .bss 00000001 +// CHECK: 11 .bss 00000001 +// CHECK: 12 .symtab 00000060 +// CHECK: 13 .shstrtab 0000006c +// CHECK: 14 .strtab 0000001d |

