diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-06-14 12:58:17 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-06-14 12:58:17 +0000 |
commit | a1c33ed55852978925a1008c0220ac1cc40ef3c8 (patch) | |
tree | 22683a6b9b8860bffe7b11ed067fc6f97557845d | |
parent | 2bb914ad5ab5ee47efc6ea1dfa2672affae79875 (diff) | |
download | bcm5719-llvm-a1c33ed55852978925a1008c0220ac1cc40ef3c8.tar.gz bcm5719-llvm-a1c33ed55852978925a1008c0220ac1cc40ef3c8.zip |
Revert r363298 "[lit] Disable test on darwin when building shared libs."
It broke running check-lld on mac, see https://reviews.llvm.org/D61697
llvm-svn: 363379
-rw-r--r-- | clang/test/Tooling/clang-check-mac-libcxx-fixed-compilation-db.cpp | 2 | ||||
-rw-r--r-- | llvm/utils/lit/lit/llvm/config.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/clang/test/Tooling/clang-check-mac-libcxx-fixed-compilation-db.cpp b/clang/test/Tooling/clang-check-mac-libcxx-fixed-compilation-db.cpp index 26a6a8ad6e9..f6424380d71 100644 --- a/clang/test/Tooling/clang-check-mac-libcxx-fixed-compilation-db.cpp +++ b/clang/test/Tooling/clang-check-mac-libcxx-fixed-compilation-db.cpp @@ -16,7 +16,5 @@ // // ^ -ccc-install-dir passed to unbreak tests on *BSD where // getMainExecutable() relies on real argv[0] being passed -// -// UNSUPPORTED: enable_shared #include <mock_vector> vector v; diff --git a/llvm/utils/lit/lit/llvm/config.py b/llvm/utils/lit/lit/llvm/config.py index ea1a7b6e0cf..6a0bfa1b207 100644 --- a/llvm/utils/lit/lit/llvm/config.py +++ b/llvm/utils/lit/lit/llvm/config.py @@ -48,8 +48,6 @@ class LLVMConfig(object): # We should standardize on the former. features.add('system-linker-mach-o') features.add('system-darwin') - if config.enable_shared: - features.add("enable_shared") elif platform.system() == 'Windows': # For tests that require Windows to run. features.add('system-windows') |