commit 565ee619723bfb5a61f2bb28d78556e795290bf3 parent 25eceffebe4b2dc4520b4926d7323551b0928691 Author: [email protected] <[email protected]> Date: Tue, 24 Mar 2020 06:07:13 +0000 Check USE_SDE Diffstat:
M | tests/CMakeLists.txt | | | 6 | +++++- |
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt @@ -254,6 +254,10 @@ if (NOT SKIP_TESTS) endif () endforeach () endif () - add_test(NAME all_tests COMMAND ${SDE} ${SDE_ARCH_${CPU_ARCH}} -chip_check_exe_only + if (USE_SDE) + add_test(NAME all_tests COMMAND ${SDE} ${SDE_ARCH_${CPU_ARCH}} -chip_check_exe_only -- ${PROJECT_BINARY_DIR}/bin/all_tests) + else () + add_test(NAME all_tests COMMAND ${PROJECT_BINARY_DIR}/bin/all_tests) + endif () endif ()