diff options
author | Eric Beckmann <ecbeckmann@google.com> | 2017-07-26 16:35:44 +0000 |
---|---|---|
committer | Eric Beckmann <ecbeckmann@google.com> | 2017-07-26 16:35:44 +0000 |
commit | 3f4fe8f4bd0ef5c70a9c91fe3f3e17ff158df130 (patch) | |
tree | 460c3090bd512a32222efd9b8effcb5343054a60 | |
parent | 43c2b131d9a1643a8db6393d6258c8c3ec096142 (diff) | |
download | bcm5719-llvm-3f4fe8f4bd0ef5c70a9c91fe3f3e17ff158df130.tar.gz bcm5719-llvm-3f4fe8f4bd0ef5c70a9c91fe3f3e17ff158df130.zip |
Correctly enable the llvm-mt tests, now that build flags changed.
llvm-svn: 309134
-rw-r--r-- | llvm/test/lit.cfg | 2 | ||||
-rw-r--r-- | llvm/test/lit.site.cfg.in | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index 1cb8896e0a5..fb5005e2998 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -553,5 +553,5 @@ if config.have_libxar: if config.enable_abi_breaking_checks == "1": config.available_features.add('abi-breaking-checks') -if config.llvm_disable_libxml2 == "OFF" and config.have_libxml2 == "TRUE": +if config.llvm_libxml2_enabled == "1": config.available_features.add('libxml2') diff --git a/llvm/test/lit.site.cfg.in b/llvm/test/lit.site.cfg.in index 67683d793aa..6de225ecc58 100644 --- a/llvm/test/lit.site.cfg.in +++ b/llvm/test/lit.site.cfg.in @@ -40,8 +40,7 @@ config.have_libxar = @HAVE_LIBXAR@ config.have_dia_sdk = @LLVM_ENABLE_DIA_SDK@ config.enable_ffi = @LLVM_ENABLE_FFI@ config.build_shared_libs = @BUILD_SHARED_LIBS@ -config.llvm_disable_libxml2 = "@LLVM_DISABLE_LIBXML2@" -config.have_libxml2 = "@LIBXML2_FOUND@" +config.llvm_libxml2_enabled = "@LLVM_LIBXML2_ENABLED@" # Support substitution of the tools_dir with user parameters. This is # used when we can't determine the tool dir at configuration time. |