[tests] Include Python binding tests in CMake rules

Add a new CMake rule check-clang-python to run the Python bindings'
test suite, and include it in check-all.

Differential Revision: https://reviews.llvm.org/D52840

llvm-svn: 344241
This commit is contained in:
Michal Gorny 2018-10-11 11:58:14 +00:00
parent c37d16140a
commit cdd23f221d
2 changed files with 8 additions and 0 deletions

View File

@ -502,6 +502,7 @@ if( CLANG_INCLUDE_TESTS )
)
endif()
add_subdirectory(utils/perf-training)
add_subdirectory(bindings/python/tests)
endif()
option(CLANG_INCLUDE_DOCS "Generate build targets for the Clang docs."

View File

@ -0,0 +1,7 @@
# Test target to run Python test suite from main build.
add_custom_target(check-clang-python
COMMAND CLANG_LIBRARY_PATH=$<TARGET_FILE_DIR:libclang> ${PYTHON_EXECUTABLE} -m unittest discover
DEPENDS libclang
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/..)
add_dependencies(check-all check-clang-python)