diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-04-22 09:56:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 09:56:05 (GMT) |
commit | bdd3b3ddcdd85bb41c4cf0bf7830bcd5c2c9db42 (patch) | |
tree | 9263d4081f1bff89243bc17ffa58fd3784313c33 /testing | |
parent | 5ffe7e4cb6384a17ec2d7e07e6e2171e512d7c41 (diff) | |
parent | a34987da94ea06a53bf4841e09436db1748bf306 (diff) | |
download | Doxygen-bdd3b3ddcdd85bb41c4cf0bf7830bcd5c2c9db42.zip Doxygen-bdd3b3ddcdd85bb41c4cf0bf7830bcd5c2c9db42.tar.gz Doxygen-bdd3b3ddcdd85bb41c4cf0bf7830bcd5c2c9db42.tar.bz2 |
Merge pull request #685 from albert-github/feature/bug_single_tests
Enable possibility to run single tests
Diffstat (limited to 'testing')
-rw-r--r-- | testing/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/CMakeLists.txt b/testing/CMakeLists.txt index 97b4868..ae5c24f 100644 --- a/testing/CMakeLists.txt +++ b/testing/CMakeLists.txt @@ -1,9 +1,9 @@ add_custom_target(tests COMMENT "Running doxygen tests..." - COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/testing/runtests.py --all --doxygen ${PROJECT_BINARY_DIR}/bin/doxygen --inputdir ${CMAKE_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing + COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/testing/runtests.py $(TEST_FLAGS) --doxygen ${PROJECT_BINARY_DIR}/bin/doxygen --inputdir ${CMAKE_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing DEPENDS doxygen ) add_test(NAME suite - COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/testing/runtests.py --all --doxygen $<TARGET_FILE:doxygen> --inputdir ${CMAKE_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing + COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/testing/runtests.py $(TEST_FLAGS) --doxygen $<TARGET_FILE:doxygen> --inputdir ${CMAKE_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing ) |