1 # RUN: echo abcd > %t.txt
3 # RUN: not llvm-objcopy -I binary %t.txt %t.o 2>&1 \
4 # RUN: | FileCheck %s --check-prefix=MISSING-BINARY-ARCH
6 # RUN: not llvm-objcopy -I binary -B xyz %t.txt %t.o 2>&1 \
7 # RUN: | FileCheck %s --check-prefix=BAD-BINARY-ARCH
9 # MISSING-BINARY-ARCH: specified binary input without specifiying an architecture
10 # BAD-BINARY-ARCH: invalid architecture: 'xyz'