Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-objcopy / ELF / set-section-alignment.test
blobb8e08cc753672c37f825169893751c7df7636a21
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 ## Also incidentally show that unmentioned sections are not impacted.
19 # RUN: llvm-objcopy --set-section-alignment .foo=4 --set-section-alignment=.foo=7 %t %t.3
20 # RUN: llvm-readobj --sections %t.3 | FileCheck --check-prefix=MULTI %s
22 # MULTI:      Name: .foo
23 # MULTI:      AddressAlignment:
24 # MULTI-SAME:                   7{{$}}
25 # MULTI:      Name: .bar
26 # MULTI:      AddressAlignment:
27 # MULTI-SAME:                   0{{$}}
28 # MULTI:      Name: .baz
29 # MULTI:      AddressAlignment:
30 # MULTI-SAME:                   4{{$}}
32 ## Ignore the option if the section does not exist.
33 # RUN: llvm-objcopy --set-section-alignment .not_exist=4 %t.3 %t.4
34 # RUN: cmp %t.3 %t.4
36 # RUN: not llvm-objcopy --set-section-alignment=.foo %t /dev/null 2>&1 | \
37 # RUN:   FileCheck --check-prefix=MISSING-EQUAL %s
38 # MISSING-EQUAL:   error: bad format for --set-section-alignment: missing '='
40 # RUN: not llvm-objcopy --set-section-alignment==4 %t /dev/null 2>&1 | \
41 # RUN:   FileCheck --check-prefix=MISSING-SECTION %s
42 # MISSING-SECTION: error: bad format for --set-section-alignment: missing section name
44 # RUN: not llvm-objcopy --set-section-alignment=.foo=bar %t /dev/null 2>&1 | \
45 # RUN:   FileCheck --check-prefix=INVALID-ALIGN %s
46 # INVALID-ALIGN:   error: invalid value for --set-section-alignment: 'bar'
48 !ELF
49 FileHeader:
50   Class:   ELFCLASS64
51   Data:    ELFDATA2LSB
52   Type:    ET_REL
53   Machine: EM_X86_64
54 Sections:
55   - Name:         .foo
56     Type:         SHT_PROGBITS
57   - Name:         .bar
58     Type:         SHT_NOBITS
59   - Name:         .baz
60     Type:         SHT_NOTE
61     AddressAlign: 4
62     Notes:        []