diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-06 13:43:02 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-06 13:49:57 +0900 |
commit | 80a31d6c8a114799dc5284086ffce2e9be34c50e (patch) | |
tree | 1719891657e76c04f063f5ff7b5fdf63d9e562c3 /debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/CMakeLists.txt | |
parent | e6ba08c3b21cdb14ee3a97b5d584759a4597b54b (diff) | |
download | extra-dependencies-80a31d6c8a114799dc5284086ffce2e9be34c50e.tar.gz extra-dependencies-80a31d6c8a114799dc5284086ffce2e9be34c50e.zip |
uncrustify-trinity: updated based on upstream version 0.75.0
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/CMakeLists.txt')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/CMakeLists.txt | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/CMakeLists.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/CMakeLists.txt new file mode 100644 index 00000000..13839df9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/CMakeLists.txt @@ -0,0 +1,93 @@ +cmake_minimum_required(VERSION 2.8.12) + +find_package(Git QUIET) + +# sorted by lexicographic order +set(test_suites + c-sharp.test + c.test + cpp.test + d.test + ecma.test + imported.test + java.test + objective-c.test + pawn.test + vala.test +) + +if (NOT ENABLE_CODECOVERAGE) + list(APPEND test_suites staging.test) +endif() + +set(stdoc + "Create a separate CTest test for each test case" + " this is slower, especially with Python 3" +) +option("UNCRUSTIFY_SEPARATE_TESTS" "${stdoc}" OFF) +if (UNCRUSTIFY_SEPARATE_TESTS) + set(tests_ctest_file "${CMAKE_CURRENT_BINARY_DIR}/tests.cmake") + set_property(DIRECTORY PROPERTY TEST_INCLUDE_FILE ${tests_ctest_file}) + + add_custom_command( + OUTPUT ${tests_ctest_file} + COMMAND ${PYTHON_EXECUTABLE} run_format_tests.py + --executable $<TARGET_FILE:uncrustify> + --git ${GIT_EXECUTABLE} + --python ${PYTHON_EXECUTABLE} + --write-ctest ${tests_ctest_file} + --cmake-config "$<CONFIGURATION>" + VERBATIM + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + DEPENDS ${test_suites} + ) + + add_custom_target(register_tests ALL DEPENDS ${tests_ctest_file}) +else() + foreach(suite IN LISTS test_suites) + string(REPLACE ".test" "" lang "${suite}") + add_test(NAME ${lang} + COMMAND ${PYTHON_EXECUTABLE} run_format_tests.py ${lang} + --executable $<TARGET_FILE:uncrustify> + -d --git ${GIT_EXECUTABLE} + --result-dir ${CMAKE_CURRENT_BINARY_DIR} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + ) + endforeach() +endif() + +if (NOT ENABLE_CODECOVERAGE) + add_test( + NAME sources_format + COMMAND ${PYTHON_EXECUTABLE} run_sources_tests.py + --executable $<TARGET_FILE:uncrustify> + -d --git ${GIT_EXECUTABLE} + --result-dir ${CMAKE_CURRENT_BINARY_DIR} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + ) +endif() + +add_test( + NAME cli_options + COMMAND ${PYTHON_EXECUTABLE} + test_cli_options.py + --config $<CONFIG> + --build ${uncrustify_BINARY_DIR} + --diff + --test ${CMAKE_CURRENT_BINARY_DIR}/cli + ${_configs} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/cli +) + +add_custom_target(update-cli-options + COMMAND ${PYTHON_EXECUTABLE} + test_cli_options.py + --config $<CONFIG> + --build ${uncrustify_BINARY_DIR} + --apply + --test ${CMAKE_CURRENT_BINARY_DIR}/cli + DEPENDS uncrustify + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/cli +) + +add_test(NAME sanity COMMAND uncrustify --help) |