[llvm] 1236b66 - [lit] pass LLVM_SYMBOLIZER_PATH through to tests.
Sam McCall via llvm-commits
llvm-commits at lists.llvm.org
Wed May 18 06:30:49 PDT 2022
Author: Sam McCall
Date: 2022-05-18T15:30:37+02:00
New Revision: 1236b66a98197109ed40141329d6056dfbe25967
URL: https://github.com/llvm/llvm-project/commit/1236b66a98197109ed40141329d6056dfbe25967
DIFF: https://github.com/llvm/llvm-project/commit/1236b66a98197109ed40141329d6056dfbe25967.diff
LOG: [lit] pass LLVM_SYMBOLIZER_PATH through to tests.
Currently several buildbots give unsymbolized traces on crash.
I suspect these are configuring the symbolizer in this way and regressed in
D122251 or thereabouts.
Trying this coupled with a reland of patch that failed on a couple of bots with
no useful stacktrace...
Added:
Modified:
llvm/utils/lit/lit/TestingConfig.py
Removed:
################################################################################
diff --git a/llvm/utils/lit/lit/TestingConfig.py b/llvm/utils/lit/lit/TestingConfig.py
index a2a83da5778e2..bdb87c376127c 100644
--- a/llvm/utils/lit/lit/TestingConfig.py
+++ b/llvm/utils/lit/lit/TestingConfig.py
@@ -29,6 +29,7 @@ def fromdefaults(litConfig):
'CLANG',
'LLDB',
'LD_PRELOAD',
+ 'LLVM_SYMBOLIZER_PATH',
'ASAN_SYMBOLIZER_PATH',
'LSAN_SYMBOLIZER_PATH',
'MSAN_SYMBOLIZER_PATH',
More information about the llvm-commits
mailing list