diff options
author | Michal Gorny <mgorny@gentoo.org> | 2018-10-12 20:03:54 +0000 |
---|---|---|
committer | Michal Gorny <mgorny@gentoo.org> | 2018-10-12 20:03:54 +0000 |
commit | 22297d935a4312251729fd66b6cd592f43f5b9cc (patch) | |
tree | f9ef0c8af04de04357ed01b4c1e549cf2e9755e7 | |
parent | 8003485cbf52405c101813be44643dd831ffca69 (diff) | |
download | bcm5719-llvm-22297d935a4312251729fd66b6cd592f43f5b9cc.tar.gz bcm5719-llvm-22297d935a4312251729fd66b6cd592f43f5b9cc.zip |
[python] [tests] Re-add once again, this time without Windows
llvm-svn: 344411
-rw-r--r-- | clang/bindings/python/tests/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/bindings/python/tests/CMakeLists.txt b/clang/bindings/python/tests/CMakeLists.txt index 97cd9ba8b6e..1e10f67ad79 100644 --- a/clang/bindings/python/tests/CMakeLists.txt +++ b/clang/bindings/python/tests/CMakeLists.txt @@ -7,4 +7,9 @@ add_custom_target(check-clang-python DEPENDS libclang WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/..) -#set_property(GLOBAL APPEND PROPERTY LLVM_ADDITIONAL_TEST_TARGETS check-clang-python) +# Tests fail on Windows, and need someone knowledgeable to fix. +# It's not clear whether it's a test or a valid binding problem. +if(NOT WIN32) + set_property(GLOBAL APPEND PROPERTY + LLVM_ADDITIONAL_TEST_TARGETS check-clang-python) +endif() |