[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / tools / llvm-objcopy / wasm / dump-section.test
blob983a581e03fe28d6c072dd5b011d1e2bedfa9a12
1 ## Test the contents of a custom section dumped from a binary.
2 # RUN: yaml2obj %s -o %t
3 # RUN: llvm-objcopy --dump-section=producers=%t.sec %t
4 # RUN: od -t x1 %t.sec | FileCheck %s
6 # RUN: not llvm-objcopy --dump-section=nonexistent=%t.sec %t 2>&1 | FileCheck --check-prefix=NONEXISTENT %s
7 # RUN: not llvm-objcopy --dump-section=producers=%t.dir/bar %t 2>&1 | FileCheck -DMSG=%errc_ENOENT --check-prefix=DIROUT %s
9 ## Raw contents of the producers section.
10 # CHECK: 0000000 01 0c 70 72 6f 63 65 73 73 65 64 2d 62 79 01 05
11 # CHECK: 0000020 63 6c 61 6e 67 05 39 2e 30 2e 30
13 # NONEXISTENT: section 'nonexistent' not found
14 # DIROUT: error: {{.*}}/bar': [[MSG]]
16 ## Test dumping the type section (a known section).
17 # RUN: llvm-objcopy --dump-section=TYPE=%t.sec %t
18 # RUN: od -t x1 %t.sec | FileCheck %s --check-prefix=TYPESEC
20 ## Raw contents of the type section.
21 # TYPESEC: 000000 01 60 01 7f 01 7d
22 # TYPESEC: 000006
24 ## Check that dumping and removing a section works in the same invocation
25 # RUN: llvm-objcopy --dump-section=producers=%t.sec --remove-section=producers %t %t2
26 # RUN: od -t x1 %t.sec | FileCheck %s
27 # RUN: obj2yaml %t2 | FileCheck --check-prefix=REMOVED %s
29 # REMOVED-NOT: producers
31 --- !WASM
32 FileHeader:
33   Version: 0x00000001
34 Sections:
35   - Type: TYPE
36     Signatures:
37       - Index: 0
38         ParamTypes:
39           - I32
40         ReturnTypes:
41           - F32
42   - Type: CUSTOM
43     Name: producers
44     Tools:
45       - Name:   clang
46         Version: 9.0.0