Skip to content

Commit 40dd732

Browse files
committed
update lit configuration
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent ea11bc6 commit 40dd732

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/lit.cfg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,15 @@
4545
# test_exec_root: The root path where tests should be run.
4646
config.test_exec_root = os.path.join(config.triton_obj_root, 'test')
4747
config.triton_tools_dir = os.path.join(config.triton_obj_root, 'bin')
48+
config.triton_intel_plugin_tools_dir = os.path.join(config.triton_obj_root, 'third_party', 'intel', 'bin')
4849
config.filecheck_dir = os.path.join(config.triton_obj_root, 'bin', 'FileCheck')
4950

5051
# FileCheck -enable-var-scope is enabled by default in MLIR test
5152
# This option avoids to accidentally reuse variable across -LABEL match,
5253
# it can be explicitly opted-in by prefixing the variable name with $
5354
config.environment["FILECHECK_OPTS"] = "--enable-var-scope"
5455

55-
tool_dirs = [config.triton_tools_dir, config.llvm_tools_dir, config.filecheck_dir]
56+
tool_dirs = [config.triton_tools_dir, config.triton_intel_plugin_tools_dir, config.llvm_tools_dir, config.filecheck_dir]
5657

5758
# Tweak the PATH to include the tools dir.
5859
for d in tool_dirs:

0 commit comments

Comments
 (0)