From 1236b66a98197109ed40141329d6056dfbe25967 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Wed, 18 May 2022 15:28:43 +0200 Subject: [PATCH] [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... --- llvm/utils/lit/lit/TestingConfig.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/utils/lit/lit/TestingConfig.py b/llvm/utils/lit/lit/TestingConfig.py index a2a83da..bdb87c3 100644 --- a/llvm/utils/lit/lit/TestingConfig.py +++ b/llvm/utils/lit/lit/TestingConfig.py @@ -29,6 +29,7 @@ class TestingConfig(object): 'CLANG', 'LLDB', 'LD_PRELOAD', + 'LLVM_SYMBOLIZER_PATH', 'ASAN_SYMBOLIZER_PATH', 'LSAN_SYMBOLIZER_PATH', 'MSAN_SYMBOLIZER_PATH', -- 2.7.4