diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index bd11abd903d..b03ec429296 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,4 +2,6 @@ add_test(name_tests ${CMAKE_BINARY_DIR}/tests/unit/name_tests) add_test(rope_tests ${CMAKE_BINARY_DIR}/tests/unit/rope_tests) add_test(print_tests ${CMAKE_BINARY_DIR}/tests/unit/print_tests) add_test(system_tests ${CMAKE_BINARY_DIR}/tests/unit/system_tests) -add_test(integration_tests ${CMAKE_BINARY_DIR}/tests/integration/integration_tests) +if (eosio_FOUND) + add_test(integration_tests ${CMAKE_BINARY_DIR}/tests/integration/integration_tests) +endif()