22 lines · plain
1# RUN: yaml2obj %s -o %t2 3# RUN: not llvm-lipo %t -thin i386 2>&1 | FileCheck --check-prefix=NO_OUTPUT %s4# NO_OUTPUT: error: thin expects a single output file5 6# RUN: not llvm-lipo %t %t -thin i386 2>&1 | FileCheck --check-prefix=MULTIPLE_INPUT_OBJ %s7# MULTIPLE_INPUT_OBJ: thin expects a single input file8 9# RUN: not llvm-lipo %t -thin i386 -output %t.out 2>&1 | FileCheck --check-prefix=INPUT_FILE_THIN %s10# INPUT_FILE_THIN: must be a fat file when the -thin option is specified11 12--- !mach-o13FileHeader:14 magic: 0xFEEDFACE15 cputype: 0x0000009716 cpusubtype: 0x0000000317 filetype: 0x0000000118 ncmds: 019 sizeofcmds: 020 flags: 0x0000200021...22