[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / llvm-ifs / output-target-error.test
blob7c6f8fba8657e38655bf936a19eed69cf2660f09
1 ## Test running llvm-ifs without specifying a valid target.
3 # RUN: not llvm-ifs --output=%t %s 2>&1 | FileCheck %s --check-prefix=MISSING
4 # RUN: not llvm-ifs  --output-format=nope --output=%t %s 2>&1 | FileCheck %s --check-prefix=INVALID
6 --- !ifs-v1
7 SoName: somelib.so
8 IfsVersion: 3.0
9 Target: { ObjectFormat: ELF, Arch: x86_64, Endianness: little, BitWidth: 64 }
10 Symbols: []
11 ...
13 # MISSING: {{llvm-ifs(\.exe)?}}: for the --output-format option: must be specified at least once!
15 # INVALID: {{llvm-ifs(\.exe)?}}: for the --output-format option: Cannot find option named 'nope'!