summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorMichal Gorny <mgorny@gentoo.org>2018-10-12 20:03:54 +0000
committerMichal Gorny <mgorny@gentoo.org>2018-10-12 20:03:54 +0000
commit9f679a5688231f3bad6f6d3d3738df5ffd7b75ed (patch)
treea31ebdab709624340010e68a79981b6930c52563 /bindings
parent4ee9e8a222791eb3ccb2df20ac89cfa2c68576ed (diff)
[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
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/tests/CMakeLists.txt7
1 files changed, 6 insertions, 1 deletions
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()