forked from OSchip/llvm-project
[asan][test] Fix typo in Unit/lit.site.cfg.py.in
I noticed that `test/asan/Unit/lit.site.cfg.py.in` contains two typos, using the FreeBSD forms of the `LD_*LIBRARY_PATH*` variables on Solaris. Tested on `amd64-pc-solaris2.11`. Differential Revision: https://reviews.llvm.org/D132736
This commit is contained in:
parent
c69df92b4f
commit
a31426dc87
|
@ -21,11 +21,11 @@ def push_ld_library_path(config, new_path):
|
|||
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'
|
||||
|
|
Loading…
Reference in New Issue