Skip to content

Commit 1b69ff6

Browse files
committed
remove pre
1 parent c982907 commit 1b69ff6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mlir/examples/standalone/test/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
tool_dirs = [config.standalone_tools_dir, config.llvm_tools_dir]
5555
tools = [
56-
ToolSubst("mlir-opt", pre=";", post=";", unresolved="fatal"),
56+
ToolSubst("mlir-opt", post=";", unresolved="fatal"),
5757
"standalone-capi-test",
5858
"standalone-opt",
5959
"standalone-translate",

mlir/test/lit.cfg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def find_real_python_interpreter():
187187
llvm_config.with_environment("PATH", dirs, append_path=True)
188188

189189
tools = [
190-
ToolSubst("mlir-tblgen", pre=";", post=";", unresolved="fatal"),
190+
ToolSubst("mlir-tblgen", post=";", unresolved="fatal"),
191191
"mlir-translate",
192192
"mlir-lsp-server",
193193
"mlir-capi-execution-engine-test",
@@ -318,7 +318,7 @@ def find_real_python_interpreter():
318318
]
319319
)
320320
else:
321-
tools.extend([ToolSubst("mlir-opt", pre=";", post=";", unresolved="fatal")])
321+
tools.extend([ToolSubst("mlir-opt", post=";", unresolved="fatal")])
322322

323323
llvm_config.add_tool_substitutions(tools, tool_dirs)
324324

0 commit comments

Comments
 (0)