[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / llvm-objcopy / ELF / set-section-alignment.test
blob79c7eddffddc311ee0e49d89d8d379ad2e12a98c
1 # RUN: yaml2obj %s -o %t
3 # RUN: llvm-objcopy --set-section-alignment .foo=4 --set-section-alignment .bar=0x5 \
4 # RUN:   --set-section-alignment .baz=0 %t %t.2
5 # RUN: llvm-readobj --sections %t.2 | FileCheck --check-prefix=CHECK %s
7 # CHECK:      Name: .foo
8 # CHECK:      AddressAlignment:
9 # CHECK-SAME:                   4{{$}}
10 # CHECK:      Name: .bar
11 # CHECK:      AddressAlignment:
12 # CHECK-SAME:                   5{{$}}
13 # CHECK:      Name: .baz
14 # CHECK:      AddressAlignment:
15 # CHECK-SAME:                   0{{$}}
17 ## If a section is specified multiple times, the last wins.
18 # RUN: llvm-objcopy --set-section-alignment .foo=4 --set-section-alignment=.foo=7 %t %t.3
19 # RUN: llvm-readobj --sections %t.3 | FileCheck --check-prefix=MULTI %s
21 # MULTI:      Name: .foo
22 # MULTI:      AddressAlignment:
23 # MULTI-SAME:                   7{{$}}
25 ## Ignore the option if the section does not exist.
26 # RUN: llvm-objcopy --set-section-alignment .not_exist=4 %t.3 %t.4
27 # RUN: cmp %t.3 %t.4
29 # RUN: not llvm-objcopy --set-section-alignment=.foo %t /dev/null 2>&1 | \
30 # RUN:   FileCheck --check-prefix=MISSING-EQUAL %s
31 # MISSING-EQUAL:   error: bad format for --set-section-alignment: missing '='
33 # RUN: not llvm-objcopy --set-section-alignment==4 %t /dev/null 2>&1 | \
34 # RUN:   FileCheck --check-prefix=MISSING-SECTION %s
35 # MISSING-SECTION: error: bad format for --set-section-alignment: missing section name
37 # RUN: not llvm-objcopy --set-section-alignment=.foo=bar %t /dev/null 2>&1 | \
38 # RUN:   FileCheck --check-prefix=INVALID-ALIGN %s
39 # INVALID-ALIGN:   error: invalid alignment for --set-section-alignment: 'bar'
41 !ELF
42 FileHeader:
43   Class:   ELFCLASS64
44   Data:    ELFDATA2LSB
45   Type:    ET_REL
46   Machine: EM_X86_64
47 Sections:
48   - Name:         .foo
49     Type:         SHT_PROGBITS
50   - Name:         .bar
51     Type:         SHT_NOBITS
52   - Name:         .baz
53     Type:         SHT_NOTE
54     AddressAlign: 4