diff options
Diffstat (limited to 'llvm/test/tools/llvm-objcopy/ELF/strip-debug.test')
-rw-r--r-- | llvm/test/tools/llvm-objcopy/ELF/strip-debug.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/tools/llvm-objcopy/ELF/strip-debug.test b/llvm/test/tools/llvm-objcopy/ELF/strip-debug.test index 6c833f301c7..b88744e5f42 100644 --- a/llvm/test/tools/llvm-objcopy/ELF/strip-debug.test +++ b/llvm/test/tools/llvm-objcopy/ELF/strip-debug.test @@ -1,12 +1,12 @@ # RUN: yaml2obj %s > %t # RUN: cp %t %t3 -# RUN: llvm-objcopy -strip-debug %t %t2 -# RUN: llvm-readobj -file-headers -sections -symbols %t2 | FileCheck %s +# RUN: llvm-objcopy --strip-debug %t %t2 +# RUN: llvm-readobj --file-headers --sections --symbols %t2 | FileCheck %s # Verify that the previous run of llvm-objcopy has not modified the input. # RUN: cmp %t %t3 -# RUN: llvm-strip -strip-debug %t3 +# RUN: llvm-strip --strip-debug %t3 # RUN: cmp %t2 %t3 # RUN: cp %t %t4 |