diff --git a/easybuild/easyblocks/l/llvm.py b/easybuild/easyblocks/l/llvm.py index 4a024cdcd51..8645f49ee91 100644 --- a/easybuild/easyblocks/l/llvm.py +++ b/easybuild/easyblocks/l/llvm.py @@ -1000,6 +1000,8 @@ def disable_sanitizer_tests(self): cmakelists_tests = os.path.join(self.start_dir, 'compiler-rt', 'test', 'CMakeLists.txt') regex_subs = [(r'compiler_rt_test_runtime.*san.*', '')] apply_regex_substitutions(cmakelists_tests, regex_subs) + if LooseVersion(self.version) >= '20.1.0': + self.general_opts['OPENMP_TEST_ENABLE_TSAN'] = 'OFF' def add_cmake_opts(self): """Add LLVM-specific CMake options."""