Skip to content

Commit 0bde5bd

Browse files
committed
[mlir] [Python] Fix misused lldb_build_directory in MLIR's test script
1 parent 32351b5 commit 0bde5bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def find_real_python_interpreter():
106106
if sys.prefix != sys.base_prefix:
107107
copied_python = os.path.join(sys.prefix, "bin", "copied-python")
108108
else:
109-
copied_python = os.path.join(config.lldb_build_directory, "copied-python")
109+
copied_python = os.path.join(config.mlir_obj_root, "copied-python")
110110

111111
# Avoid doing any work if we already copied the binary.
112112
if os.path.isfile(copied_python):

0 commit comments

Comments
 (0)