diff options
author | Rui Ueyama <ruiu@google.com> | 2017-04-19 11:34:55 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2017-04-19 11:34:55 +0000 |
commit | 151cc0a15b20d1a56cb2a8a3629b534b4c3bb53b (patch) | |
tree | dcc1c14e4695d7ae38a51807254295bef62b9fca | |
parent | 29181007dfd5f1b467c4a767abd29388dc211878 (diff) | |
download | bcm5719-llvm-151cc0a15b20d1a56cb2a8a3629b534b4c3bb53b.tar.gz bcm5719-llvm-151cc0a15b20d1a56cb2a8a3629b534b4c3bb53b.zip |
Remove a redundant test.
We already have compress-debug-output.s, and that test should suffice
for the -compressed-debug-section option.
llvm-svn: 300677
-rw-r--r-- | lld/test/ELF/compress-debug-output-i386.s | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/lld/test/ELF/compress-debug-output-i386.s b/lld/test/ELF/compress-debug-output-i386.s deleted file mode 100644 index a17f8f51e6d..00000000000 --- a/lld/test/ELF/compress-debug-output-i386.s +++ /dev/null @@ -1,29 +0,0 @@ -# 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" |