[compiler-rt] [llvm] Add cmake option to enable/disable searching PATH for symbolizer (PR #129012)

via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 19:18:56 PDT 2025


https://github.com/midhuncodes7 updated https://github.com/llvm/llvm-project/pull/129012

>From 12cd6b8de54add6a82226457faaf9697873c1c32 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Mon, 17 Feb 2025 22:02:56 +0530
Subject: [PATCH 01/41] option to enable/disable PATH search for symbolizer

---
 compiler-rt/CMakeLists.txt                    |  7 ++++
 .../sanitizer_symbolizer_posix_libcdep.cpp    | 35 +++++++++++--------
 .../TestCases/disable_symbolizer_path_search  | 29 +++++++++++++++
 3 files changed, 56 insertions(+), 15 deletions(-)
 create mode 100644 compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search

diff --git a/compiler-rt/CMakeLists.txt b/compiler-rt/CMakeLists.txt
index 2c52788de56af..45f651fb7338e 100644
--- a/compiler-rt/CMakeLists.txt
+++ b/compiler-rt/CMakeLists.txt
@@ -830,6 +830,13 @@ pythonize_bool(COMPILER_RT_TEST_USE_LLD)
 option(COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER "Build Compiler RT linked with in LLVM symbolizer" OFF)
 mark_as_advanced(COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER)
 
+option(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH "Disable searching for external symbolizer in $PATH" OFF)
+mark_as_advanced(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
+
+if (SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
+    add_definitions(-DSANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
+endif()
+
 add_subdirectory(lib)
 
 if(COMPILER_RT_INCLUDE_TESTS)
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
index 0ddc24802d216..c37d5a670c8d2 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
@@ -443,23 +443,28 @@ static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
   }
 
   // Otherwise symbolizer program is unknown, let's search $PATH
+#ifdef SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
+   VReport(2, "Symbolizer path search is disabled\n");
+   return nullptr;
+#else 
   CHECK(path == nullptr);
-#if SANITIZER_APPLE
-  if (const char *found_path = FindPathToBinary("atos")) {
-    VReport(2, "Using atos found at: %s\n", found_path);
-    return new(*allocator) AtosSymbolizer(found_path, allocator);
-  }
-#endif  // SANITIZER_APPLE
-  if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
-    VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
-    return new(*allocator) LLVMSymbolizer(found_path, allocator);
-  }
-  if (common_flags()->allow_addr2line) {
-    if (const char *found_path = FindPathToBinary("addr2line")) {
-      VReport(2, "Using addr2line found at: %s\n", found_path);
-      return new(*allocator) Addr2LinePool(found_path, allocator);
+  #if SANITIZER_APPLE
+    if (const char *found_path = FindPathToBinary("atos")) {
+      VReport(2, "Using atos found at: %s\n", found_path);
+      return new(*allocator) AtosSymbolizer(found_path, allocator);
     }
-  }
+  #endif  // SANITIZER_APPLE
+    if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
+      VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
+      return new(*allocator) LLVMSymbolizer(found_path, allocator);
+    }
+    if (common_flags()->allow_addr2line) {
+      if (const char *found_path = FindPathToBinary("addr2line")) {
+        VReport(2, "Using addr2line found at: %s\n", found_path);
+        return new(*allocator) Addr2LinePool(found_path, allocator);
+      }
+    }
+#endif // SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
   return nullptr;
 }
 
diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search
new file mode 100644
index 0000000000000..0e190f00a2a84
--- /dev/null
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search
@@ -0,0 +1,29 @@
+// REQUIRES: static-libs
+
+// RUN: %clangxx %s -o %t -DDISABLE_SYMBOLIZER_PATH_SEARCH=1
+// RUN: %run %t 2>&1 | FileCheck %s --check-prefix=CHECK
+
+// RUN: %clangxx %s -o %t -DDISABLE_SYMBOLIZER_PATH_SEARCH=0
+// RUN: %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-ALLOCATOR
+
+// REQUIRES: shell
+
+// Mobile device will not have symbolizer in provided path.
+// UNSUPPORTED: ios, android
+
+#include <sanitizer/common_interface_defs.h>
+#include <stdio.h>
+
+static void Symbolize() {
+  char buffer[100];
+  __sanitizer_symbolize_pc(__builtin_return_address(0), "%p %F %L", buffer,
+                           sizeof(buffer));
+  printf("%s\n", buffer);
+}
+
+int main() {
+  Symbolize();
+}
+
+// CHECK: Symbolizer path search is disabled
+// CHECK-ALLOCATOR: {{0x.* in main}}

>From 9e2978cd7ce72a70cdde82c3fb118c3221298b3b Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Mon, 24 Feb 2025 11:49:56 +0530
Subject: [PATCH 02/41] comments fix

---
 compiler-rt/CMakeLists.txt                                      | 2 +-
 .../lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler-rt/CMakeLists.txt b/compiler-rt/CMakeLists.txt
index 45f651fb7338e..67133b62cd047 100644
--- a/compiler-rt/CMakeLists.txt
+++ b/compiler-rt/CMakeLists.txt
@@ -834,7 +834,7 @@ option(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH "Disable searching for external
 mark_as_advanced(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
 
 if (SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
-    add_definitions(-DSANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
+    add_compile_definitions(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
 endif()
 
 add_subdirectory(lib)
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
index c37d5a670c8d2..7febcf6d4ff00 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
@@ -444,7 +444,7 @@ static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
 
   // Otherwise symbolizer program is unknown, let's search $PATH
 #ifdef SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
-   VReport(2, "Symbolizer path search is disabled\n");
+   VReport(2, "Symbolizer path search is disabled in the runtime build configuration\n");
    return nullptr;
 #else 
   CHECK(path == nullptr);

>From e97f75dd31a6027e725fd4f0fed303f6978b8b33 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 25 Feb 2025 09:00:38 +0530
Subject: [PATCH 03/41] test file removed

---
 .../TestCases/disable_symbolizer_path_search  | 29 -------------------
 1 file changed, 29 deletions(-)
 delete mode 100644 compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search
deleted file mode 100644
index 0e190f00a2a84..0000000000000
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search
+++ /dev/null
@@ -1,29 +0,0 @@
-// REQUIRES: static-libs
-
-// RUN: %clangxx %s -o %t -DDISABLE_SYMBOLIZER_PATH_SEARCH=1
-// RUN: %run %t 2>&1 | FileCheck %s --check-prefix=CHECK
-
-// RUN: %clangxx %s -o %t -DDISABLE_SYMBOLIZER_PATH_SEARCH=0
-// RUN: %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-ALLOCATOR
-
-// REQUIRES: shell
-
-// Mobile device will not have symbolizer in provided path.
-// UNSUPPORTED: ios, android
-
-#include <sanitizer/common_interface_defs.h>
-#include <stdio.h>
-
-static void Symbolize() {
-  char buffer[100];
-  __sanitizer_symbolize_pc(__builtin_return_address(0), "%p %F %L", buffer,
-                           sizeof(buffer));
-  printf("%s\n", buffer);
-}
-
-int main() {
-  Symbolize();
-}
-
-// CHECK: Symbolizer path search is disabled
-// CHECK-ALLOCATOR: {{0x.* in main}}

>From 31d9cfc7770b1b516f8832eb5c6feb7d0b9a7df4 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 5 Mar 2025 21:17:05 +0530
Subject: [PATCH 04/41] format fix

---
 compiler-rt/CMakeLists.txt                    |  2 +-
 .../sanitizer_symbolizer_posix_libcdep.cpp    | 37 ++++++++++---------
 2 files changed, 20 insertions(+), 19 deletions(-)

diff --git a/compiler-rt/CMakeLists.txt b/compiler-rt/CMakeLists.txt
index 67133b62cd047..f319113e5c16e 100644
--- a/compiler-rt/CMakeLists.txt
+++ b/compiler-rt/CMakeLists.txt
@@ -834,7 +834,7 @@ option(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH "Disable searching for external
 mark_as_advanced(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
 
 if (SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
-    add_compile_definitions(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
+  add_compile_definitions(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
 endif()
 
 add_subdirectory(lib)
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
index 7febcf6d4ff00..aeb9640517465 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
@@ -444,28 +444,29 @@ static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
 
   // Otherwise symbolizer program is unknown, let's search $PATH
 #ifdef SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
-   VReport(2, "Symbolizer path search is disabled in the runtime build configuration\n");
+  VReport(2, "Symbolizer path search is disabled in the runtime "
+          "build configuration.\n");
    return nullptr;
 #else 
   CHECK(path == nullptr);
-  #if SANITIZER_APPLE
-    if (const char *found_path = FindPathToBinary("atos")) {
-      VReport(2, "Using atos found at: %s\n", found_path);
-      return new(*allocator) AtosSymbolizer(found_path, allocator);
-    }
-  #endif  // SANITIZER_APPLE
-    if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
-      VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
-      return new(*allocator) LLVMSymbolizer(found_path, allocator);
-    }
-    if (common_flags()->allow_addr2line) {
-      if (const char *found_path = FindPathToBinary("addr2line")) {
-        VReport(2, "Using addr2line found at: %s\n", found_path);
-        return new(*allocator) Addr2LinePool(found_path, allocator);
-      }
-    }
-#endif // SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
+ #if SANITIZER_APPLE
+   if (const char *found_path = FindPathToBinary("atos")) {
+     VReport(2, "Using atos found at: %s\n", found_path);
+     return new(*allocator) AtosSymbolizer(found_path, allocator);
+   }
+ #endif  // SANITIZER_APPLE
+   if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
+     VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
+     return new(*allocator) LLVMSymbolizer(found_path, allocator);
+   }
+   if (common_flags()->allow_addr2line) {
+     if (const char *found_path = FindPathToBinary("addr2line")) {
+       VReport(2, "Using addr2line found at: %s\n", found_path);
+       return new(*allocator) Addr2LinePool(found_path, allocator);
+     }
+   }
   return nullptr;
+#endif // SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
 }
 
 static void ChooseSymbolizerTools(IntrusiveList<SymbolizerTool> *list,

>From cc82c3ab4828d3e7ca72a7511799cf36ab7bb676 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 5 Mar 2025 21:20:15 +0530
Subject: [PATCH 05/41] format fix

---
 .../lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
index aeb9640517465..be0f7936c8409 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
@@ -449,7 +449,7 @@ static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
    return nullptr;
 #else 
   CHECK(path == nullptr);
- #if SANITIZER_APPLE
+#if SANITIZER_APPLE
    if (const char *found_path = FindPathToBinary("atos")) {
      VReport(2, "Using atos found at: %s\n", found_path);
      return new(*allocator) AtosSymbolizer(found_path, allocator);

>From b51307d9c39cc2465ef5f93599cd11aaafbd2223 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 5 Mar 2025 21:22:54 +0530
Subject: [PATCH 06/41] format fix

---
 .../sanitizer_symbolizer_posix_libcdep.cpp    | 30 +++++++++----------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
index be0f7936c8409..1b6845d0a1b4d 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
@@ -450,21 +450,21 @@ static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
 #else 
   CHECK(path == nullptr);
 #if SANITIZER_APPLE
-   if (const char *found_path = FindPathToBinary("atos")) {
-     VReport(2, "Using atos found at: %s\n", found_path);
-     return new(*allocator) AtosSymbolizer(found_path, allocator);
-   }
- #endif  // SANITIZER_APPLE
-   if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
-     VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
-     return new(*allocator) LLVMSymbolizer(found_path, allocator);
-   }
-   if (common_flags()->allow_addr2line) {
-     if (const char *found_path = FindPathToBinary("addr2line")) {
-       VReport(2, "Using addr2line found at: %s\n", found_path);
-       return new(*allocator) Addr2LinePool(found_path, allocator);
-     }
-   }
+  if (const char *found_path = FindPathToBinary("atos")) {
+    VReport(2, "Using atos found at: %s\n", found_path);
+    return new(*allocator) AtosSymbolizer(found_path, allocator);
+  }
+#endif  // SANITIZER_APPLE
+  if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
+    VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
+    return new(*allocator) LLVMSymbolizer(found_path, allocator);
+  }
+  if (common_flags()->allow_addr2line) {
+    if (const char *found_path = FindPathToBinary("addr2line")) {
+      VReport(2, "Using addr2line found at: %s\n", found_path);
+      return new(*allocator) Addr2LinePool(found_path, allocator);
+    }
+  }
   return nullptr;
 #endif // SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
 }

>From 4f48babe7ee1ee48ccbf094d5b31eb1d432b5419 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 11 Mar 2025 09:00:09 +0530
Subject: [PATCH 07/41] upstream changes

---
 compiler-rt/test/lit.common.configured.in      |  1 +
 .../test/sanitizer_common/lit.common.cfg.py    | 18 ++++++++++++++++++
 .../gn/secondary/compiler-rt/test/BUILD.gn     |  1 +
 3 files changed, 20 insertions(+)

diff --git a/compiler-rt/test/lit.common.configured.in b/compiler-rt/test/lit.common.configured.in
index 050792b6b2621..eff9e6708219d 100644
--- a/compiler-rt/test/lit.common.configured.in
+++ b/compiler-rt/test/lit.common.configured.in
@@ -72,6 +72,7 @@ else:
   set_default("target_suffix", "-%s" % config.target_arch)
 
 set_default("have_internal_symbolizer", @COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER_PYBOOL@)
+set_default("have_disable_symbolizer_path_search", @COMPILER_RT_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL@)
 set_default("have_zlib", @ZLIB_FOUND_PYBOOL@)
 set_default("zlib_include_dir", "@ZLIB_INCLUDE_DIR@")
 set_default("zlib_library", "@ZLIB_LIBRARY@")
diff --git a/compiler-rt/test/sanitizer_common/lit.common.cfg.py b/compiler-rt/test/sanitizer_common/lit.common.cfg.py
index 5406e8838f2fc..74c25b87ba3b7 100644
--- a/compiler-rt/test/sanitizer_common/lit.common.cfg.py
+++ b/compiler-rt/test/sanitizer_common/lit.common.cfg.py
@@ -100,3 +100,21 @@ def build_invocation(compile_flags):
 
 if config.host_os == "NetBSD":
     config.substitutions.insert(0, ("%run", config.netbsd_noaslr_prefix))
+
+tool_symbolizer_path_map = {
+    "asan": "ASAN_SYMBOLIZER_PATH",
+    "hwasan": "HWASAN_SYMBOLIZER_PATH",
+    "rtsan": "RTSAN_SYMBOLIZER_PATH",
+    "tsan": "TSAN_SYMBOLIZER_PATH",
+    "msan": "MSAN_SYMBOLIZER_PATH",
+    "lsan": "LSAN_SYMBOLIZER_PATH",
+    "ubsan": "UBSAN_SYMBOLIZER_PATH"
+}
+
+if config.have_disable_symbolizer_path_search:
+    config.available_features.add("disable_symbolizer_path_search")
+
+if config.have_disable_symbolizer_path_search:
+    symbolizer_path = os.path.join(config.llvm_tools_dir, "llvm-symbolizer")
+    for sanitizer in tool_symbolizer_path_map.values():
+        config.environment[sanitizer] = symbolizer_path 
\ No newline at end of file
diff --git a/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
index 020f3e7d9acd7..803e3dbdb8933 100644
--- a/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
@@ -53,6 +53,7 @@ write_cmake_config("lit_common_configured") {
     "COMPILER_RT_BUILD_STANDALONE_LIBATOMIC_PYBOOL=False",
     "COMPILER_RT_DEBUG_PYBOOL=False",
     "COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER_PYBOOL=False",
+    "COMPILER_RT_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL=False",
     "COMPILER_RT_HAS_NO_DEFAULT_CONFIG_FLAG_PYBOOL=True",
     "COMPILER_RT_INTERCEPT_LIBDISPATCH_PYBOOL=False",
     "COMPILER_RT_RESOLVED_EXEC_OUTPUT_DIR=" +

>From 3dcab674306b4d741bcfb7ce175c464fcb9ca4cb Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 11 Mar 2025 12:32:01 +0530
Subject: [PATCH 08/41] changes for test failure

---
 compiler-rt/test/lit.common.configured.in           | 2 +-
 compiler-rt/test/sanitizer_common/lit.common.cfg.py | 3 ++-
 llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn   | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/compiler-rt/test/lit.common.configured.in b/compiler-rt/test/lit.common.configured.in
index eff9e6708219d..019c594e4fece 100644
--- a/compiler-rt/test/lit.common.configured.in
+++ b/compiler-rt/test/lit.common.configured.in
@@ -72,7 +72,7 @@ else:
   set_default("target_suffix", "-%s" % config.target_arch)
 
 set_default("have_internal_symbolizer", @COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER_PYBOOL@)
-set_default("have_disable_symbolizer_path_search", @COMPILER_RT_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL@)
+set_default("have_disable_symbolizer_path_search", @SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL@)
 set_default("have_zlib", @ZLIB_FOUND_PYBOOL@)
 set_default("zlib_include_dir", "@ZLIB_INCLUDE_DIR@")
 set_default("zlib_library", "@ZLIB_LIBRARY@")
diff --git a/compiler-rt/test/sanitizer_common/lit.common.cfg.py b/compiler-rt/test/sanitizer_common/lit.common.cfg.py
index 74c25b87ba3b7..1f0ec1f5d016d 100644
--- a/compiler-rt/test/sanitizer_common/lit.common.cfg.py
+++ b/compiler-rt/test/sanitizer_common/lit.common.cfg.py
@@ -117,4 +117,5 @@ def build_invocation(compile_flags):
 if config.have_disable_symbolizer_path_search:
     symbolizer_path = os.path.join(config.llvm_tools_dir, "llvm-symbolizer")
     for sanitizer in tool_symbolizer_path_map.values():
-        config.environment[sanitizer] = symbolizer_path 
\ No newline at end of file
+        config.environment[sanitizer] = symbolizer_path 
+        
\ No newline at end of file
diff --git a/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
index 803e3dbdb8933..a7ea1cf309b97 100644
--- a/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
@@ -53,7 +53,7 @@ write_cmake_config("lit_common_configured") {
     "COMPILER_RT_BUILD_STANDALONE_LIBATOMIC_PYBOOL=False",
     "COMPILER_RT_DEBUG_PYBOOL=False",
     "COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER_PYBOOL=False",
-    "COMPILER_RT_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL=False",
+    "SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL=False",
     "COMPILER_RT_HAS_NO_DEFAULT_CONFIG_FLAG_PYBOOL=True",
     "COMPILER_RT_INTERCEPT_LIBDISPATCH_PYBOOL=False",
     "COMPILER_RT_RESOLVED_EXEC_OUTPUT_DIR=" +

>From 9bab344995b9ead59cc0106437ce5777440c1b89 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 11 Mar 2025 14:58:56 +0530
Subject: [PATCH 09/41] changes for test failure

---
 compiler-rt/test/lit.common.configured.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/lit.common.configured.in b/compiler-rt/test/lit.common.configured.in
index 019c594e4fece..e26cff10a3050 100644
--- a/compiler-rt/test/lit.common.configured.in
+++ b/compiler-rt/test/lit.common.configured.in
@@ -72,7 +72,7 @@ else:
   set_default("target_suffix", "-%s" % config.target_arch)
 
 set_default("have_internal_symbolizer", @COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER_PYBOOL@)
-set_default("have_disable_symbolizer_path_search", @SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL@)
+set_default("have_disable_symbolizer_path_search", ON)
 set_default("have_zlib", @ZLIB_FOUND_PYBOOL@)
 set_default("zlib_include_dir", "@ZLIB_INCLUDE_DIR@")
 set_default("zlib_library", "@ZLIB_LIBRARY@")

>From 9a358ebc9cbac36bdb65d8e59c772871270efa5e Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 11 Mar 2025 15:27:04 +0530
Subject: [PATCH 10/41] changes for test failure

---
 compiler-rt/test/CMakeLists.txt           | 2 ++
 compiler-rt/test/lit.common.configured.in | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/compiler-rt/test/CMakeLists.txt b/compiler-rt/test/CMakeLists.txt
index f9e23710d3e4f..fad5b7e03925e 100644
--- a/compiler-rt/test/CMakeLists.txt
+++ b/compiler-rt/test/CMakeLists.txt
@@ -10,6 +10,8 @@ pythonize_bool(COMPILER_RT_BUILD_STANDALONE_LIBATOMIC)
 
 pythonize_bool(COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER)
 
+pythonize_bool(SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH)
+
 pythonize_bool(COMPILER_RT_HAS_AARCH64_SME)
 
 pythonize_bool(COMPILER_RT_HAS_NO_DEFAULT_CONFIG_FLAG)
diff --git a/compiler-rt/test/lit.common.configured.in b/compiler-rt/test/lit.common.configured.in
index e26cff10a3050..019c594e4fece 100644
--- a/compiler-rt/test/lit.common.configured.in
+++ b/compiler-rt/test/lit.common.configured.in
@@ -72,7 +72,7 @@ else:
   set_default("target_suffix", "-%s" % config.target_arch)
 
 set_default("have_internal_symbolizer", @COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER_PYBOOL@)
-set_default("have_disable_symbolizer_path_search", ON)
+set_default("have_disable_symbolizer_path_search", @SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH_PYBOOL@)
 set_default("have_zlib", @ZLIB_FOUND_PYBOOL@)
 set_default("zlib_include_dir", "@ZLIB_INCLUDE_DIR@")
 set_default("zlib_library", "@ZLIB_LIBRARY@")

>From 38a5f1412341c13d82aeb9d8e24aad1d2f1a7811 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 12 Mar 2025 09:50:43 +0530
Subject: [PATCH 11/41] changes for test failure

---
 compiler-rt/test/lit.common.cfg.py            | 19 +++++++++++++++++++
 .../test/sanitizer_common/lit.common.cfg.py   | 19 -------------------
 2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/compiler-rt/test/lit.common.cfg.py b/compiler-rt/test/lit.common.cfg.py
index c6f27748ccb76..b403062055183 100644
--- a/compiler-rt/test/lit.common.cfg.py
+++ b/compiler-rt/test/lit.common.cfg.py
@@ -371,6 +371,25 @@ def get_ios_commands_dir():
         config.compiler_rt_src_root, "test", "sanitizer_common", "ios_commands"
     )
 
+# When cmake flag to disable path search is set, symbolizer is not allowed to search in $PATH, 
+# need to specify it via XXX_SYMBOLIZER_PATH
+tool_symbolizer_path_map = {
+    "asan": "ASAN_SYMBOLIZER_PATH",
+    "hwasan": "HWASAN_SYMBOLIZER_PATH",
+    "rtsan": "RTSAN_SYMBOLIZER_PATH",
+    "tsan": "TSAN_SYMBOLIZER_PATH",
+    "msan": "MSAN_SYMBOLIZER_PATH",
+    "lsan": "LSAN_SYMBOLIZER_PATH",
+    "ubsan": "UBSAN_SYMBOLIZER_PATH"
+}
+
+if config.have_disable_symbolizer_path_search:
+    config.available_features.add("disable_symbolizer_path_search")
+
+if config.have_disable_symbolizer_path_search:
+    symbolizer_path = os.path.join(config.llvm_tools_dir, "llvm-symbolizer")
+    for sanitizer in tool_symbolizer_path_map.values():
+        config.environment[sanitizer] = symbolizer_path 
 
 # Allow tests to be executed on a simulator or remotely.
 if emulator:
diff --git a/compiler-rt/test/sanitizer_common/lit.common.cfg.py b/compiler-rt/test/sanitizer_common/lit.common.cfg.py
index 1f0ec1f5d016d..5406e8838f2fc 100644
--- a/compiler-rt/test/sanitizer_common/lit.common.cfg.py
+++ b/compiler-rt/test/sanitizer_common/lit.common.cfg.py
@@ -100,22 +100,3 @@ def build_invocation(compile_flags):
 
 if config.host_os == "NetBSD":
     config.substitutions.insert(0, ("%run", config.netbsd_noaslr_prefix))
-
-tool_symbolizer_path_map = {
-    "asan": "ASAN_SYMBOLIZER_PATH",
-    "hwasan": "HWASAN_SYMBOLIZER_PATH",
-    "rtsan": "RTSAN_SYMBOLIZER_PATH",
-    "tsan": "TSAN_SYMBOLIZER_PATH",
-    "msan": "MSAN_SYMBOLIZER_PATH",
-    "lsan": "LSAN_SYMBOLIZER_PATH",
-    "ubsan": "UBSAN_SYMBOLIZER_PATH"
-}
-
-if config.have_disable_symbolizer_path_search:
-    config.available_features.add("disable_symbolizer_path_search")
-
-if config.have_disable_symbolizer_path_search:
-    symbolizer_path = os.path.join(config.llvm_tools_dir, "llvm-symbolizer")
-    for sanitizer in tool_symbolizer_path_map.values():
-        config.environment[sanitizer] = symbolizer_path 
-        
\ No newline at end of file

>From 9b6cbf80c5d5010b1b1d59d9a156dc0b0a0bc0c1 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Thu, 13 Mar 2025 22:21:02 +0530
Subject: [PATCH 12/41] added test

---
 .../disable_symbolizer_path_search.cpp        | 26 +++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
new file mode 100644
index 0000000000000..c209c4008e0d2
--- /dev/null
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -0,0 +1,26 @@
+// REQUIRES: static-libs
+// REQUIRES: disable_symbolizer_path_search
+
+// RUN: %clangxx %s -o %t
+// RUN: %run %t 2>&1 | FileCheck %s
+
+// REQUIRES: shell
+
+// Mobile device will not have symbolizer in provided path.
+// UNSUPPORTED: ios, android
+
+#include <sanitizer/common_interface_defs.h>
+#include <stdio.h>
+
+static void Symbolize() {
+  char buffer[100];
+  __sanitizer_symbolize_pc(__builtin_return_address(0), "%p %F %L", buffer,
+                           sizeof(buffer));
+  printf("%s\n", buffer);
+}
+
+int main() {
+  Symbolize();
+}
+
+// CHECK: Symbolizer path search is disabled in the runtime build configuration"
\ No newline at end of file

>From ee5b45e894da85216fec04c17198c3cb3a09628d Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 01:08:25 +0530
Subject: [PATCH 13/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index c209c4008e0d2..e64136f700ea8 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,5 +1,5 @@
 // REQUIRES: static-libs
-// REQUIRES: disable_symbolizer_path_search
+// REQUIRES: have_disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s
@@ -23,4 +23,4 @@ int main() {
   Symbolize();
 }
 
-// CHECK: Symbolizer path search is disabled in the runtime build configuration"
\ No newline at end of file
+// CHECK: Symbolizer path search is disabled in the runtime build configuration"

>From 1f72e778a0a4604a556e019186b7341605c2689f Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 01:48:23 +0530
Subject: [PATCH 14/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index e64136f700ea8..f79398e565ed5 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,5 +1,5 @@
 // REQUIRES: static-libs
-// REQUIRES: have_disable_symbolizer_path_search
+// REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s

>From eb953442a4a3df96d6272eb794df3e10ddc6fc2b Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 08:17:39 +0530
Subject: [PATCH 15/41] test update

---
 compiler-rt/test/lit.common.cfg.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/compiler-rt/test/lit.common.cfg.py b/compiler-rt/test/lit.common.cfg.py
index b403062055183..421d0cdd82e36 100644
--- a/compiler-rt/test/lit.common.cfg.py
+++ b/compiler-rt/test/lit.common.cfg.py
@@ -330,6 +330,10 @@ def push_dynamic_library_lookup_path(config, new_path):
 if config.have_internal_symbolizer:
     config.available_features.add("internal_symbolizer")
 
+if config.have_disable_symbolizer_path_search:
+    config.available_features.add("disable_symbolizer_path_search")
+
+
 # Use ugly construction to explicitly prohibit "clang", "clang++" etc.
 # in RUN lines.
 config.substitutions.append(
@@ -383,9 +387,6 @@ def get_ios_commands_dir():
     "ubsan": "UBSAN_SYMBOLIZER_PATH"
 }
 
-if config.have_disable_symbolizer_path_search:
-    config.available_features.add("disable_symbolizer_path_search")
-
 if config.have_disable_symbolizer_path_search:
     symbolizer_path = os.path.join(config.llvm_tools_dir, "llvm-symbolizer")
     for sanitizer in tool_symbolizer_path_map.values():

>From 92df88f9582b6c25d4dbbd9b6058782d22da97fb Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:26:31 +0530
Subject: [PATCH 16/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                 | 1 -
 1 file changed, 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index f79398e565ed5..157585a40944c 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,5 +1,4 @@
 // REQUIRES: static-libs
-// REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s

>From 4d19a6b81066263d3bc6b77a77e8edbe7b3cebd8 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:29:34 +0530
Subject: [PATCH 17/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                 | 1 -
 1 file changed, 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 157585a40944c..697e7b4eb0ff1 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,4 +1,3 @@
-// REQUIRES: static-libs
 
 // RUN: %clangxx %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s

>From edbfa273af14caddb5f2ed0f4e4666e40da86dcd Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:30:30 +0530
Subject: [PATCH 18/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 697e7b4eb0ff1..dca00c06789ff 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,3 +1,4 @@
+// REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s

>From d2635f7d4134d4cd87234dfeb48d60699d708aa0 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:33:28 +0530
Subject: [PATCH 19/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp               | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index dca00c06789ff..45f2db420ef35 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -3,6 +3,8 @@
 // RUN: %clangxx %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s
 
+// CHECK: Symbolizer path search is disabled in the runtime build configuration"
+
 // REQUIRES: shell
 
 // Mobile device will not have symbolizer in provided path.
@@ -22,4 +24,3 @@ int main() {
   Symbolize();
 }
 
-// CHECK: Symbolizer path search is disabled in the runtime build configuration"

>From eb000f025b6feb7ffd355cea4ea997a34dfb1e80 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:36:49 +0530
Subject: [PATCH 20/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 45f2db420ef35..8e29d55bce64c 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,6 +1,7 @@
 // REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
+// env ASAN_SYMBOLIZER_PATH = 
 // RUN: %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration"

>From 2280777c38d566acfd4b4a54e7ca73e37e084334 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:40:14 +0530
Subject: [PATCH 21/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 8e29d55bce64c..618bf222ed3e3 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,7 +1,7 @@
 // REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
-// env ASAN_SYMBOLIZER_PATH = 
+// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= \
 // RUN: %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration"

>From cb0cb67d903a49c395e019a207fa77b17a378ae3 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:44:34 +0530
Subject: [PATCH 22/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 618bf222ed3e3..f333fa2434b6c 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,10 +1,10 @@
 // REQUIRES: disable_symbolizer_path_search
 
-// RUN: %clangxx %s -o %t
 // RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= \
+// RUN: %clangxx %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s
 
-// CHECK: Symbolizer path search is disabled in the runtime build configuration"
+// CHECK: Symbolizer path search is disabled in the runtime build configuration
 
 // REQUIRES: shell
 

>From 2ee1345dabd96c6ddb02770adf24d8f80ee22579 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:47:16 +0530
Subject: [PATCH 23/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index f333fa2434b6c..ccb448cf06ee2 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,8 +1,8 @@
 // REQUIRES: disable_symbolizer_path_search
 
-// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= \
 // RUN: %clangxx %s -o %t
-// RUN: %run %t 2>&1 | FileCheck %s
+// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= \
+// RUN: %run %t 2>&1 | FileCheck -s %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From 4b7a5c32337ec99f7593cd088b4345548a09047b Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:51:57 +0530
Subject: [PATCH 24/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index ccb448cf06ee2..a2cdc10e5f559 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,8 +1,8 @@
 // REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
-// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= \
-// RUN: %run %t 2>&1 | FileCheck -s %s
+// RUN: env ASAN_SYMBOLIZER_PATH= ""
+// RUN: %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From 47b078e21389531e03f581e514ec3c93a99669eb Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:54:26 +0530
Subject: [PATCH 25/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp              | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index a2cdc10e5f559..d7c8f3ed4e1b3 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,7 +1,9 @@
 // REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
-// RUN: env ASAN_SYMBOLIZER_PATH= ""
+// RUN: echo $ASAN_SYMBOLIZER_PATH
+// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= \
+// RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration

>From cbf7fcabfc75b9dc32e160652162a30ddc4f96b0 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:55:35 +0530
Subject: [PATCH 26/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index d7c8f3ed4e1b3..815bc1687f5d7 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -2,7 +2,7 @@
 
 // RUN: %clangxx %s -o %t
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= \
+// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
 

>From eb93aa3e0d89d823f2d4ed723e6ac7d9dd875a83 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 10:56:15 +0530
Subject: [PATCH 27/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 815bc1687f5d7..62f1f652ff3b7 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -2,7 +2,7 @@
 
 // RUN: %clangxx %s -o %t
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: env ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
+// RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
 

>From 3628f3d6753adfe95bd485089c3d2fa3fafcc75f Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 11:02:35 +0530
Subject: [PATCH 28/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 62f1f652ff3b7..18ef7923ef762 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -5,6 +5,7 @@
 // RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
+// RUN: echo $ASAN_SYMBOLIZER_PATH
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From 90312acfa47f5e30ee45fdee55f3f4b20c923729 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Fri, 14 Mar 2025 11:03:51 +0530
Subject: [PATCH 29/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp               | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 18ef7923ef762..bf9a1e2969efb 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -4,8 +4,9 @@
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: %run %t 2>&1 | FileCheck %s
+// RUN: %run %t 2>&1
 // RUN: echo $ASAN_SYMBOLIZER_PATH
+// RUN: FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From 51214e9f949c23a31d34303994e05ba0c4fe90c8 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 18 Mar 2025 14:39:39 +0530
Subject: [PATCH 30/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp            | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index bf9a1e2969efb..aaaf0d18649cf 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -2,11 +2,9 @@
 
 // RUN: %clangxx %s -o %t
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
+// RUN: env -u ASAN_SYMBOLIZER_PATH -u
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: %run %t 2>&1
-// RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: FileCheck %s
+// RUN: %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From 39fa79c5c410ccac493f4e25416cb8fd00a05109 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 18 Mar 2025 14:41:17 +0530
Subject: [PATCH 31/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index aaaf0d18649cf..02a648bfde569 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -2,7 +2,7 @@
 
 // RUN: %clangxx %s -o %t
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: env -u ASAN_SYMBOLIZER_PATH -u
+// RUN: env --u ASAN_SYMBOLIZER_PATH -u
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
 

>From d6050c66e68d0a13afc777e0d333e552918e58c3 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 18 Mar 2025 14:44:43 +0530
Subject: [PATCH 32/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 02a648bfde569..afdb767965aff 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -2,7 +2,7 @@
 
 // RUN: %clangxx %s -o %t
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: env --u ASAN_SYMBOLIZER_PATH -u
+// RUN: env -u ASAN_SYMBOLIZER_PATH
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
 

>From e8a0196569f8a5e036f0d4371eb26f32aeb5bbd7 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 18 Mar 2025 14:46:40 +0530
Subject: [PATCH 33/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index afdb767965aff..8eb122b82d96b 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -2,7 +2,7 @@
 
 // RUN: %clangxx %s -o %t
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: env -u ASAN_SYMBOLIZER_PATH
+// RUN: env -u ASAN_SYMBOLIZER_PATH bash
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
 

>From c017f56ec1c83f6899110c2910170f0053425893 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Tue, 18 Mar 2025 14:56:01 +0530
Subject: [PATCH 34/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp               | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 8eb122b82d96b..66eca60980b70 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -2,7 +2,7 @@
 
 // RUN: %clangxx %s -o %t
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: env -u ASAN_SYMBOLIZER_PATH bash
+// RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %run %t 2>&1 | FileCheck %s
 
@@ -26,4 +26,3 @@ static void Symbolize() {
 int main() {
   Symbolize();
 }
-

>From 66531f2a1c4211b749c03ed880e6b62359c2c19d Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 19 Mar 2025 00:48:21 +0530
Subject: [PATCH 35/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 66eca60980b70..12bd8d0c58a14 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -4,6 +4,7 @@
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
+// RUN: %env_tool_opts=verbosity=3 %run
 // RUN: %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration

>From 493b4b3a44455592734a74b15fdc32696c57bd6a Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 19 Mar 2025 01:42:28 +0530
Subject: [PATCH 36/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp               | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 12bd8d0c58a14..9483c39e4e05a 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -4,8 +4,7 @@
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: %env_tool_opts=verbosity=3 %run
-// RUN: %run %t 2>&1 | FileCheck %s
+// RUN: %env_tool_opts=verbosity=3 %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From a0ab3130c23748f26e95e3065167072c529ec27f Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 19 Mar 2025 02:22:06 +0530
Subject: [PATCH 37/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp                | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 9483c39e4e05a..b993bbccfc596 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -4,6 +4,8 @@
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
+// RUN: env -u ASAN_SYMBOLIZER_PATH
+// RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: %env_tool_opts=verbosity=3 %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration

>From f89721da8a6813d0a9103b6efe4c61efb27ba411 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 19 Mar 2025 07:34:33 +0530
Subject: [PATCH 38/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp              | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index b993bbccfc596..1197311d198aa 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -4,9 +4,7 @@
 // RUN: echo $ASAN_SYMBOLIZER_PATH
 // RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
 // RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: env -u ASAN_SYMBOLIZER_PATH
-// RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: %env_tool_opts=verbosity=3 %run %t 2>&1 | FileCheck %s
+// RUN: %env_tool_opts=verbosity=3 -u ASAN_SYMBOLIZER_PATH -u TSAN_SYMBOLIZER_PATH -u MSAN_SYMBOLIZER_PATH -u UBSAN_SYMBOLIZER_PATH %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From 006a4f6b323a3ed35517edf7505c34f1ebe11724 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 19 Mar 2025 07:40:23 +0530
Subject: [PATCH 39/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp           | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 1197311d198aa..49fa1f7b08813 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,10 +1,9 @@
 // REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
-// RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: export ASAN_SYMBOLIZER_PATH= TSAN_SYMBOLIZER_PATH= MSAN_SYMBOLIZER_PATH= UBSAN_SYMBOLIZER_PATH= 
-// RUN: echo $ASAN_SYMBOLIZER_PATH
-// RUN: %env_tool_opts=verbosity=3 -u ASAN_SYMBOLIZER_PATH -u TSAN_SYMBOLIZER_PATH -u MSAN_SYMBOLIZER_PATH -u UBSAN_SYMBOLIZER_PATH %run %t 2>&1 | FileCheck %s
+// RUN: echo "Before unset: $ASAN_SYMBOLIZER_PATH"
+// RUN: env -u ASAN_SYMBOLIZER_PATH -u TSAN_SYMBOLIZER_PATH -u MSAN_SYMBOLIZER_PATH -u UBSAN_SYMBOLIZER_PATH %env ASAN_OPTIONS=verbosity=3 %run %t 2>&1 | FileCheck %s
+// RUN: echo "After unset: $ASAN_SYMBOLIZER_PATH"
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From c50047824feeaa8cc2707c943d8b6f5efdfd910d Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 19 Mar 2025 07:42:05 +0530
Subject: [PATCH 40/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp            | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 49fa1f7b08813..93658a79f8d46 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,9 +1,9 @@
 // REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
-// RUN: echo "Before unset: $ASAN_SYMBOLIZER_PATH"
-// RUN: env -u ASAN_SYMBOLIZER_PATH -u TSAN_SYMBOLIZER_PATH -u MSAN_SYMBOLIZER_PATH -u UBSAN_SYMBOLIZER_PATH %env ASAN_OPTIONS=verbosity=3 %run %t 2>&1 | FileCheck %s
-// RUN: echo "After unset: $ASAN_SYMBOLIZER_PATH"
+// RUN: env -u ASAN_SYMBOLIZER_PATH -u TSAN_SYMBOLIZER_PATH -u \
+MSAN_SYMBOLIZER_PATH -u UBSAN_SYMBOLIZER_PATH %env ASAN_OPTIONS=verbosity=3 \
+%run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 

>From d47b29b54188d5009a7d6d00a8bca762a2907518 Mon Sep 17 00:00:00 2001
From: Midhunesh <midhunesh.p at ibm.com>
Date: Wed, 19 Mar 2025 07:43:39 +0530
Subject: [PATCH 41/41] test update

---
 .../TestCases/disable_symbolizer_path_search.cpp           | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
index 93658a79f8d46..60fa9b68b88ab 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/disable_symbolizer_path_search.cpp
@@ -1,9 +1,10 @@
 // REQUIRES: disable_symbolizer_path_search
 
 // RUN: %clangxx %s -o %t
-// RUN: env -u ASAN_SYMBOLIZER_PATH -u TSAN_SYMBOLIZER_PATH -u \
-MSAN_SYMBOLIZER_PATH -u UBSAN_SYMBOLIZER_PATH %env ASAN_OPTIONS=verbosity=3 \
-%run %t 2>&1 | FileCheck %s
+// RUN: echo "Before unset: $ASAN_SYMBOLIZER_PATH"
+// RUN: env -u ASAN_SYMBOLIZER_PATH -u TSAN_SYMBOLIZER_PATH \
+// RUN: -u MSAN_SYMBOLIZER_PATH -u UBSAN_SYMBOLIZER_PATH \
+// RUN: %env ASAN_OPTIONS=verbosity=3 %run %t 2>&1 | FileCheck %s
 
 // CHECK: Symbolizer path search is disabled in the runtime build configuration
 



More information about the llvm-commits mailing list