diff options
| author | Vitaly Buka <vitalybuka@google.com> | 2019-10-08 20:50:46 +0000 |
|---|---|---|
| committer | Vitaly Buka <vitalybuka@google.com> | 2019-10-08 20:50:46 +0000 |
| commit | f3ae951c09ef7ce98c62bd0941fb33cbb32f528b (patch) | |
| tree | 864e4a7e9283a97b262829481d4bbc26fd525ece | |
| parent | 4805c817c3fa506cf0d17af1960de57bc1538afb (diff) | |
| download | bcm5719-llvm-f3ae951c09ef7ce98c62bd0941fb33cbb32f528b.tar.gz bcm5719-llvm-f3ae951c09ef7ce98c62bd0941fb33cbb32f528b.zip | |
[sanitizer] Fix crypt.cpp test on Darwin
llvm-svn: 374115
| -rw-r--r-- | compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp | 2 | ||||
| -rw-r--r-- | compiler-rt/test/sanitizer_common/lit.common.cfg.py | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp b/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp index ff86aced520..ff2626408a2 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp +++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp @@ -1,4 +1,4 @@ -// RUN: %clangxx -O0 -g %s -o %t -lcrypt && %run %t +// RUN: %clangxx -O0 -g %s -o %t && %run %t // crypt is missing from Android. // UNSUPPORTED: android diff --git a/compiler-rt/test/sanitizer_common/lit.common.cfg.py b/compiler-rt/test/sanitizer_common/lit.common.cfg.py index 5f4f2d892b6..e23a8ce0d3d 100644 --- a/compiler-rt/test/sanitizer_common/lit.common.cfg.py +++ b/compiler-rt/test/sanitizer_common/lit.common.cfg.py @@ -46,10 +46,13 @@ if default_tool_options_str: config.environment[tool_options] = default_tool_options_str default_tool_options_str += ':' +extra_link_flags = [] + if config.host_os in ['Linux']: - extra_link_flags = ["-ldl"] -else: - extra_link_flags = [] + extra_link_flags += ["-ldl"] + +if config.host_os in ['Linux', 'NetBSD', 'FreeBSD']: + extra_link_flags += ["-lcrypt"] clang_cflags = config.debug_info_flags + tool_cflags + [config.target_cflags] clang_cflags += extra_link_flags |

