[clang-tidy][NFC]remove deps of clang in clang tidy test (#116588)
[llvm-project.git] / mlir / test / mlir-cpu-runner / verify-flags.mlir
blob850179af3c94569016797774697e1586e915ed7a
1 // REQUIRES: asserts
2 // RUN: mlir-cpu-runner %s --debug-only=jit-runner -mattr=+foo_bar -e entry -entry-point-result=void 2>&1 | FileCheck %s --check-prefixes=MATTR
3 // RUN: not mlir-cpu-runner %s --debug-only=jit-runner -march=bar_foo -e entry -entry-point-result=void 2>&1 | FileCheck %s --check-prefixes=MARCH
5 // Verify that command line args do affect the configuration
7 // MATTR: Features = 
8 // MATTR-SAME: +foo_bar
10 // MARCH: Failed to create a TargetMachine for the host
11 // MARCH-NEXT: No available targets are compatible with triple "bar_foo-{{.*}}"
13 llvm.func @entry() -> () {
14   llvm.return