Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mlir/test/mlir-cpu-runner/invalid.mlir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: not mlir-cpu-runner --no-implicit-module %s |& FileCheck %s
// RUN: not mlir-cpu-runner --no-implicit-module %s 2>&1 | FileCheck %s

// CHECK: Error: top-level op must be a symbol table.
llvm.func @main()
4 changes: 2 additions & 2 deletions mlir/test/mlir-reduce/invalid.mlir
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// UNSUPPORTED: system-windows
// RUN: not mlir-reduce -opt-reduction-pass --no-implicit-module %s |& FileCheck %s --check-prefix=CHECK-PASS
// RUN: not mlir-reduce -reduction-tree --no-implicit-module %s |& FileCheck %s --check-prefix=CHECK-TREE
// RUN: not mlir-reduce -opt-reduction-pass --no-implicit-module %s 2>&1 | FileCheck %s --check-prefix=CHECK-PASS
// RUN: not mlir-reduce -reduction-tree --no-implicit-module %s 2>&1 | FileCheck %s --check-prefix=CHECK-TREE

// The reduction passes are currently restricted to 'builtin.module'.
// CHECK-PASS: error: Can't add pass '{{.+}}' restricted to 'builtin.module' on a PassManager intended to run on 'func.func'
Expand Down