tools/llvm-readobj currently contains tests that are either general for all file types or that mix file types inside. This patch refactors these test and leaves only general tests in that folder. All other tests were moved to ELF/COFF/MachO and wasm accordingly. I tried to minimize amount of changes, so most of the test parts remained unchanged. Any further refactorings and improvements for particular tests should be done independently from this patch. Differential revision: https://reviews.llvm.org/D71269
9 lines
388 B
Plaintext
9 lines
388 B
Plaintext
## Test that --hex-dump/-x can be used to display the contents
|
|
## of the indicated section as hexadecimal bytes.
|
|
|
|
# RUN: llvm-readobj -x 1 %p/Inputs/trivial.obj.wasm | FileCheck %s
|
|
# RUN: llvm-readobj --hex-dump 1 %p/Inputs/trivial.obj.wasm | FileCheck %s
|
|
|
|
# CHECK: 0x00000000 04600001 7f60017f 017f6000 0060017f .`...`....`..`..
|
|
# CHECK: 0x00000010 00 .
|