diff options
| author | George Rimar <grimar@accesssoftek.com> | 2019-03-22 12:14:04 +0000 |
|---|---|---|
| committer | George Rimar <grimar@accesssoftek.com> | 2019-03-22 12:14:04 +0000 |
| commit | d822018dbeb56ee2c77d6b1e559a3146438f8517 (patch) | |
| tree | 3c72071aa4616c0aa025814344563770ea12fbb9 /llvm/test/tools/llvm-objcopy/ELF/compress-debug-sections-groups.test | |
| parent | dab1f6fc4e025a0d6ceeaae48a5e569bb85e6696 (diff) | |
| download | bcm5719-llvm-d822018dbeb56ee2c77d6b1e559a3146438f8517.tar.gz bcm5719-llvm-d822018dbeb56ee2c77d6b1e559a3146438f8517.zip | |
Revert r356738 "[llvm-objcopy] - Implement replaceSectionReferences for GroupSection class."
Seems this broke ubsan bot:
http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap-ubsan/builds/11760
llvm-svn: 356745
Diffstat (limited to 'llvm/test/tools/llvm-objcopy/ELF/compress-debug-sections-groups.test')
| -rw-r--r-- | llvm/test/tools/llvm-objcopy/ELF/compress-debug-sections-groups.test | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/llvm/test/tools/llvm-objcopy/ELF/compress-debug-sections-groups.test b/llvm/test/tools/llvm-objcopy/ELF/compress-debug-sections-groups.test deleted file mode 100644 index a72ecbfc04c..00000000000 --- a/llvm/test/tools/llvm-objcopy/ELF/compress-debug-sections-groups.test +++ /dev/null @@ -1,53 +0,0 @@ -# REQUIRES: zlib - -## In this test, we check how llvm-objcopy handles compression/decompression -## of debug sections included in a COMDAT group. - -# RUN: yaml2obj %p/Inputs/compress-debug-sections.yaml -o %t.o - -## Check compression of debug sections. -# RUN: llvm-objcopy --compress-debug-sections %t.o %t-compressed.o -# RUN: llvm-readobj -s -elf-section-groups %t-compressed.o | \ -# RUN: FileCheck %s --check-prefixes=CHECK,COMPRESS - -## Check zlib-gnu compression of debug sections. -# RUN: llvm-objcopy --compress-debug-sections=zlib-gnu %t.o %t-compressed-gnu.o -# RUN: llvm-readobj -s -elf-section-groups %t-compressed-gnu.o | \ -# RUN: FileCheck %s --check-prefixes=CHECK,COMPRESSZLIB - -## Check decompression of debug sections. -# RUN: llvm-objcopy --decompress-debug-sections %t-compressed.o %t-decompressed.o -# RUN: llvm-readobj -elf-section-groups %t-decompressed.o | \ -# RUN: FileCheck %s --check-prefixes=CHECK,DECOMPRESS - -## Check decompression of zlib-gnu debug sections. -# RUN: llvm-objcopy --decompress-debug-sections %t-compressed-gnu.o %t-decompressed-gnu.o -# RUN: llvm-readobj -elf-section-groups %t-decompressed-gnu.o | \ -# RUN: FileCheck %s --check-prefixes=CHECK,DECOMPRESS - -# COMPRESSZLIB: Name: .zdebug_in_group -# COMPRESSZLIB-NEXT: Type: SHT_PROGBITS -# COMPRESSZLIB-NEXT: Flags [ -# COMPRESSZLIB-NEXT: SHF_GROUP -# COMPRESSZLIB-NEXT: ] - -# COMPRESS: Name: .debug_in_group -# COMPRESS-NEXT: Type: SHT_PROGBITS -# COMPRESS-NEXT: Flags [ -# COMPRESS-NEXT: SHF_COMPRESSED -# COMPRESS-NEXT: SHF_GROUP -# COMPRESS-NEXT: ] - -# CHECK: Group { -# CHECK-NEXT: Name: .group -# CHECK-NEXT: Index: -# CHECK-NEXT: Link: -# CHECK-NEXT: Info: -# CHECK-NEXT: Type: COMDAT -# CHECK-NEXT: Signature: groupname -# CHECK-NEXT: Section(s) in group [ -# CHECK-NEXT: .text.in.group -# COMPRESSZLIB-NEXT: .zdebug_in_group -# COMPRESS-NEXT: .debug_in_group -# DECOMPRESS-NEXT: .debug_in_group -# CHECK-NEXT: ] |

