diff options
Diffstat (limited to 'llvm/test/tools/llvm-readobj/many-sections.s')
-rw-r--r-- | llvm/test/tools/llvm-readobj/many-sections.s | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/tools/llvm-readobj/many-sections.s b/llvm/test/tools/llvm-readobj/many-sections.s index 053dbbf9fb7..bf3e7b22675 100644 --- a/llvm/test/tools/llvm-readobj/many-sections.s +++ b/llvm/test/tools/llvm-readobj/many-sections.s @@ -11,13 +11,13 @@ ## space, but its e_shnum, e_shstrndx, sh_size and sh_link fields are set ## according to the above description, so that we can test the dumper. -# RUN: llvm-readobj -file-headers -sections -elf-output-style GNU \ +# RUN: llvm-readobj --file-headers -S --elf-output-style GNU \ # RUN: %p/Inputs/many-sections.elf-x86_64 | FileCheck %s --check-prefix=GNU1 # GNU1: Number of section headers: 0 (5) # GNU1: Section header string table index: 65535 (3) # GNU1: There are 5 section headers, starting at offset 0xb8 -# RUN: llvm-readobj -file-headers -elf-output-style LLVM \ +# RUN: llvm-readobj --file-headers --elf-output-style LLVM \ # RUN: %p/Inputs/many-sections.elf-x86_64 | FileCheck %s --check-prefix=LLVM1 # LLVM1: SectionHeaderCount: 0 (5) # LLVM1: StringTableSectionIndex: 65535 (3) @@ -26,12 +26,12 @@ ## e_shoff field set to zero, but not e_shstrndx, to show that ## this corrupt case is handled correctly. -# RUN: llvm-readobj -file-headers -elf-output-style GNU \ +# RUN: llvm-readobj --file-headers --elf-output-style GNU \ # RUN: %p/Inputs/many-sections-stripped.elf-x86_64 | FileCheck %s --check-prefix=GNU2 # GNU2: Number of section headers: 0 # GNU2: Section header string table index: 65535 (corrupt: out of range) -# RUN: llvm-readobj -file-headers -elf-output-style LLVM \ +# RUN: llvm-readobj --file-headers --elf-output-style LLVM \ # RUN: %p/Inputs/many-sections-stripped.elf-x86_64 | FileCheck %s --check-prefix=LLVM2 # LLVM2: SectionHeaderCount: 0 # LLVM2: StringTableSectionIndex: 65535 (corrupt: out of range) |