[ARM] MVE big endian bitcasts
[llvm-complete.git] / test / tools / llvm-objcopy / ELF / keep-only-section.test
blob7ea8468fe5f991f1aeeae8a000c7d96ebfc038db
1 # RUN: yaml2obj %s > %t
2 # RUN: llvm-objcopy --keep-section=.test2 --only-section=.test %t %t2
3 # RUN: llvm-objcopy -j .test --keep-section=.test2 %t %t3
4 # RUN: llvm-readobj --file-headers --sections %t2 | FileCheck %s
5 # RUN: diff %t2 %t3
6 # RUN: llvm-objcopy --regex --keep-section='^.test$'  --only-section='^.test[2-3]+$' %t %t4
7 # RUN: llvm-readobj --file-headers --sections %t4 | FileCheck %s --check-prefix=REGEX
9 !ELF
10 FileHeader:
11   Class:           ELFCLASS64
12   Data:            ELFDATA2LSB
13   Type:            ET_REL
14   Machine:         EM_X86_64
15 Sections:
16   - Name:            .test
17     Type:            SHT_PROGBITS
18   - Name:            .test2
19     Type:            SHT_PROGBITS
20   - Name:            .test3
21     Type:            SHT_PROGBITS
23 # CHECK: SectionHeaderCount: 6
25 # CHECK:     Name: .test
26 # CHECK:     Name: .test2
27 # CHECK:     Name: .symtab
28 # CHECK:     Name: .strtab
29 # CHECK:     Name: .shstrtab
31 # REGEX: SectionHeaderCount: 7
33 # REGEX:     Name: .test
34 # REGEX:     Name: .test2
35 # REGEX:     Name: .test3
36 # REGEX:     Name: .symtab
37 # REGEX:     Name: .strtab
38 # REGEX:     Name: .shstrtab