[Mlir-commits] [mlir] c519751 - [MLIR] Remove unused lit test replacements.
Christian Sigg
llvmlistbot at llvm.org
Tue Sep 13 10:27:52 PDT 2022
Author: Christian Sigg
Date: 2022-09-13T19:27:42+02:00
New Revision: c5197517305a09c9a2d623a5f496c64d8431e6bf
URL: https://github.com/llvm/llvm-project/commit/c5197517305a09c9a2d623a5f496c64d8431e6bf
DIFF: https://github.com/llvm/llvm-project/commit/c5197517305a09c9a2d623a5f496c64d8431e6bf.diff
LOG: [MLIR] Remove unused lit test replacements.
The following replacements have been changed to `%mlir_lib_dir`:
- `%linalg_test_lib_dir`
- `%cuda_wrapper_library_dir`
- `%spirv_wrapper_library_dir`
- `%vulkan_wrapper_library_dir`
- `%mlir_runner_utils_dir`
- `%mlir_integration_test_dir`
If there are no requests to delay submission, I plan to submit this on 9/13/2002 (Tuesday).
See also PSA: https://discourse.llvm.org/t/psa-removing-mlir-lit-test-replacements/65124
Reviewed By: herhut
Differential Revision: https://reviews.llvm.org/D133409
Added:
Modified:
mlir/test/lit.cfg.py
Removed:
################################################################################
diff --git a/mlir/test/lit.cfg.py b/mlir/test/lit.cfg.py
index 0b9452946a45..73405c3eb1b9 100644
--- a/mlir/test/lit.cfg.py
+++ b/mlir/test/lit.cfg.py
@@ -82,12 +82,6 @@
ToolSubst('toy-ch5', unresolved='ignore'),
ToolSubst('%mlir_lib_dir', config.mlir_lib_dir, unresolved='ignore'),
ToolSubst('%mlir_src_dir', config.mlir_src_root, unresolved='ignore'),
- # The substitutions below will be replaced by '%mlir_lib_dir' shortly.
- ToolSubst('%linalg_test_lib_dir', config.mlir_lib_dir, unresolved='ignore'),
- ToolSubst('%mlir_runner_utils_dir', config.mlir_lib_dir, unresolved='ignore'),
- ToolSubst('%spirv_wrapper_library_dir', config.mlir_lib_dir, unresolved='ignore'),
- ToolSubst('%vulkan_wrapper_library_dir', config.mlir_lib_dir, unresolved='ignore'),
- ToolSubst('%mlir_integration_test_dir', config.mlir_lib_dir, unresolved='ignore'),
])
python_executable = config.python_executable
More information about the Mlir-commits
mailing list