Skip to content

Commit d7f71a3

Browse files
[mlir] Fix RUN command introduced in 516ccce (llvm#84765) (NFC)
There were two problems: * The `%s` argument to `FileCheck` was repeated. * A single dash for `-check-prefix` was used but we need two dashes.
1 parent 58a20a0 commit d7f71a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/mlir-opt/split-markers.mlir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Check that (1) custom input splitter and (2) custom output splitters work.
77
// RUN: mlir-opt %s -split-input-file="// CHECK: ""----" \
88
// RUN: -output-split-marker="// ---- next split ----" \
9-
// RUN: | FileCheck -input-file %s -check-prefix=CHECK-SPLITTERS %s
9+
// RUN: | FileCheck --check-prefix=CHECK-SPLITTERS %s
1010

1111
func.func @main() {return}
1212

0 commit comments

Comments
 (0)