diff options
author | George Rimar <grimar@accesssoftek.com> | 2017-04-17 09:04:07 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2017-04-17 09:04:07 +0000 |
commit | 5f72e056e712866b0b58c03fe8c599b12529ccbd (patch) | |
tree | fd5876841933723606adbb4a6ff2f76c476b7084 | |
parent | dbf9339715c42bbec5903231ae8fa5f64bc5c877 (diff) | |
download | bcm5719-llvm-5f72e056e712866b0b58c03fe8c599b12529ccbd.tar.gz bcm5719-llvm-5f72e056e712866b0b58c03fe8c599b12529ccbd.zip |
[ELF] - Add compress-debug-output-i386.s testcase.
This is for --compress-debug-sections (r300444), we have
x64 testcase, but did not have i386 one.
llvm-svn: 300445
-rw-r--r-- | lld/test/ELF/compress-debug-output-i386.s | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lld/test/ELF/compress-debug-output-i386.s b/lld/test/ELF/compress-debug-output-i386.s new file mode 100644 index 00000000000..a17f8f51e6d --- /dev/null +++ b/lld/test/ELF/compress-debug-output-i386.s @@ -0,0 +1,29 @@ +# REQUIRES: x86 +# REQUIRES: zlib + +# RUN: llvm-mc -filetype=obj -triple=i386-pc-linux %s -o %t.o +# RUN: ld.lld %t.o -o %t1 --compress-debug-sections=zlib + +# RUN: llvm-objdump -s %t1 | FileCheck %s --check-prefix=ZLIBCONTENT +# ZLIBCONTENT: Contents of section .debug_str: +# ZLIBCONTENT-NOT: AAAAAAAAA + +# RUN: llvm-readobj -s %t1 | FileCheck %s --check-prefix=ZLIBFLAGS +# ZLIBFLAGS: Section { +# ZLIBFLAGS: Index: +# ZLIBFLAGS: Name: .debug_str +# ZLIBFLAGS-NEXT: Type: SHT_PROGBITS +# ZLIBFLAGS-NEXT: Flags [ +# ZLIBFLAGS-NEXT: SHF_COMPRESSED + +# RUN: llvm-dwarfdump %t1 -debug-dump=str | \ +# RUN: FileCheck %s --check-prefix=DEBUGSTR +# DEBUGSTR: .debug_str contents: +# DEBUGSTR-NEXT: AAAAAAAAAAAAAAAAAAAAAAAAAAA +# DEBUGSTR-NEXT: BBBBBBBBBBBBBBBBBBBBBBBBBBB + +.section .debug_str,"MS",@progbits,1 +.Linfo_string0: + .asciz "AAAAAAAAAAAAAAAAAAAAAAAAAAA" +.Linfo_string1: + .asciz "BBBBBBBBBBBBBBBBBBBBBBBBBBB" |