[PATCH] D132736: [asan][test] Fix typo in Unit/lit.site.cfg.py.in

Rainer Orth via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 26 22:51:04 PDT 2022


This revision was automatically updated to reflect the committed changes.
ro marked an inline comment as done.
Closed by commit rGa31426dc87ae: [asan][test] Fix typo in Unit/lit.site.cfg.py.in (authored by ro).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D132736/new/

https://reviews.llvm.org/D132736

Files:
  compiler-rt/test/asan/Unit/lit.site.cfg.py.in


Index: compiler-rt/test/asan/Unit/lit.site.cfg.py.in
===================================================================
--- compiler-rt/test/asan/Unit/lit.site.cfg.py.in
+++ compiler-rt/test/asan/Unit/lit.site.cfg.py.in
@@ -21,11 +21,11 @@
   if platform.system() == 'SunOS':
     new_ld_library_path_32 = os.path.pathsep.join(
       (new_path, config.environment.get('LD_LIBRARY_PATH_32', '')))
-    config.environment['LD_32_LIBRARY_PATH'] = new_ld_library_path_32
+    config.environment['LD_LIBRARY_PATH_32'] = new_ld_library_path_32
 
     new_ld_library_path_64 = os.path.pathsep.join(
       (new_path, config.environment.get('LD_LIBRARY_PATH_64', '')))
-    config.environment['LD_64_LIBRARY_PATH'] = new_ld_library_path_64
+    config.environment['LD_LIBRARY_PATH_64'] = new_ld_library_path_64
 
 # Setup config name.
 config.name = 'AddressSanitizer-Unit'


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132736.456084.patch
Type: text/x-patch
Size: 868 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220827/187f8162/attachment.bin>


More information about the llvm-commits mailing list