kraken-assessment/tests/integration/CMakeLists.txt
Bruno BELANYI c62f79cbb2
All checks were successful
continuous-integration/drone/push Build is passing
tests: add integration tests
2022-03-12 11:39:39 +01:00

14 lines
275 B
CMake

find_program(BASH_PROGRAM bash)
if (BASH_PROGRAM)
add_test(test_output
${BASH_PROGRAM}
${CMAKE_CURRENT_SOURCE_DIR}/test-output.sh
${CMAKE_SOURCE_DIR}/data/
# FIXME: can't get it working $<TARGET_FILE:kraken>
${CMAKE_BINARY_DIR}/src/kraken
)
endif (BASH_PROGRAM)