Skip to content

Commit 6c5cb97

Browse files
authored
[lit] Fix the missing comma in LIT config (llvm#162998)
This pull request makes a minor fix to the `llvm/utils/lit/lit/llvm/config.py` file. The change corrects a missing comma in the list of environment variables, ensuring that `"UBSAN_SYMBOLIZER_PATH"` and `"ASAN_OPTIONS"` are treated as separate entries instead of a single concatenated string. * Fixed a missing comma between `"UBSAN_SYMBOLIZER_PATH"` and `"ASAN_OPTIONS"` in the environment variable list in `llvm/utils/lit/lit/llvm/config.py`, preventing potential configuration issues.
1 parent 4d29460 commit 6c5cb97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/utils/lit/lit/llvm/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ def __init__(self, lit_config, config):
8585
"HWASAN_SYMBOLIZER_PATH",
8686
"MSAN_SYMBOLIZER_PATH",
8787
"TSAN_SYMBOLIZER_PATH",
88-
"UBSAN_SYMBOLIZER_PATH" "ASAN_OPTIONS",
88+
"UBSAN_SYMBOLIZER_PATH",
89+
"ASAN_OPTIONS",
8990
"HWASAN_OPTIONS",
9091
"MSAN_OPTIONS",
9192
"RTSAN_OPTIONS",

0 commit comments

Comments
 (0)