From: Michal Gorny Date: Fri, 12 Oct 2018 20:03:54 +0000 (+0000) Subject: [python] [tests] Re-add once again, this time without Windows X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f679a5688231f3bad6f6d3d3738df5ffd7b75ed;p=clang [python] [tests] Re-add once again, this time without Windows git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@344411 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/bindings/python/tests/CMakeLists.txt b/bindings/python/tests/CMakeLists.txt index 97cd9ba8b6..1e10f67ad7 100644 --- a/bindings/python/tests/CMakeLists.txt +++ b/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()