[python] [tests] Re-add once again, this time without Windows

llvm-svn: 344411
This commit is contained in:
Michal Gorny 2018-10-12 20:03:54 +00:00
parent 8003485cbf
commit 22297d935a
1 changed files with 6 additions and 1 deletions

View File

@ -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()