Jordan Rupprecht | cf67633 | 2018-08-17 18:51:11 +0000 | [diff] [blame^] | 1 | # RUN: echo abcd > %t.txt |
2 | |||||
3 | # RUN: not llvm-objcopy -I binary %t.txt %t.o 2>&1 \ | ||||
4 | # RUN: | FileCheck %s --check-prefix=MISSING-BINARY-ARCH | ||||
5 | |||||
6 | # RUN: not llvm-objcopy -I binary -B xyz %t.txt %t.o 2>&1 \ | ||||
7 | # RUN: | FileCheck %s --check-prefix=BAD-BINARY-ARCH | ||||
8 | |||||
9 | # MISSING-BINARY-ARCH: Specified binary input without specifiying an architecture. | ||||
10 | # BAD-BINARY-ARCH: Invalid architecture: 'xyz'. |