2022-03-22 11:03:15 -04:00
|
|
|
cmake_minimum_required(VERSION 3.11)
|
2023-03-09 09:23:42 -05:00
|
|
|
project(constellation LANGUAGES C)
|
2022-07-11 09:19:56 -04:00
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
enable_testing()
|
|
|
|
|
2023-08-16 16:09:56 -04:00
|
|
|
# TODO(malt3): Remove this once every integration test is migrated to Bazel
|
2022-09-05 02:42:55 -04:00
|
|
|
add_test(NAME integration-csi COMMAND bash -c "go test -tags integration -c ./test/ && sudo ./test.test -test.v" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/csi)
|
2022-09-08 08:45:27 -04:00
|
|
|
add_test(NAME integration-dm COMMAND bash -c "go test -tags integration -c ./test/ && sudo ./test.test -test.v" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/disk-mapper/internal)
|
2022-08-17 07:50:43 -04:00
|
|
|
add_test(NAME integration-license COMMAND bash -c "go test -tags integration" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/internal/license)
|