2021-11-08 17:08:50 +01:00
|
|
|
#
|
2022-01-12 10:47:47 +01:00
|
|
|
# Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC)
|
2021-11-08 17:08:50 +01:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2022-05-30 19:39:09 +02:00
|
|
|
set(OVNI_TEST_SOURCE_DIR "${CMAKE_SOURCE_DIR}/test")
|
|
|
|
set(OVNI_TEST_BUILD_DIR "${CMAKE_BINARY_DIR}/test")
|
2021-11-16 13:55:36 +01:00
|
|
|
|
2022-05-31 11:05:30 +02:00
|
|
|
macro(ovni_test name driver)
|
|
|
|
add_executable("${name}" "${name}.c")
|
|
|
|
target_link_libraries("${name}" ovni)
|
2022-06-01 17:01:51 +02:00
|
|
|
|
2022-05-31 11:05:30 +02:00
|
|
|
add_test(NAME "${name}"
|
|
|
|
COMMAND "${OVNI_TEST_SOURCE_DIR}/${driver}" "${name}"
|
|
|
|
WORKING_DIRECTORY "${OVNI_TEST_BUILD_DIR}")
|
2022-06-01 17:01:51 +02:00
|
|
|
|
2022-06-02 15:45:25 +02:00
|
|
|
set_property(TEST "${name}" PROPERTY RUN_SERIAL TRUE)
|
|
|
|
|
2022-06-01 17:01:51 +02:00
|
|
|
if("${name}" MATCHES ".*-bad")
|
2022-06-02 15:45:25 +02:00
|
|
|
set_property(TEST "${name}" PROPERTY WILL_FAIL TRUE)
|
2022-06-01 17:01:51 +02:00
|
|
|
endif()
|
|
|
|
|
2022-05-31 11:05:30 +02:00
|
|
|
endmacro()
|
2021-12-10 17:12:27 +01:00
|
|
|
|
2022-06-21 15:26:20 +02:00
|
|
|
# Only run performance sensitive tests on Release builds
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
|
|
ovni_test("flush-overhead" "driver.sh")
|
|
|
|
endif()
|
|
|
|
|
2022-05-31 11:05:30 +02:00
|
|
|
ovni_test("flush" "driver.sh")
|
|
|
|
ovni_test("mp-simple" "mp-driver.sh")
|
|
|
|
ovni_test("mp-rank" "mp-driver.sh")
|
2022-05-31 11:16:10 +02:00
|
|
|
ovni_test("nosv-nested-tasks" "driver.sh")
|
2022-06-01 17:01:51 +02:00
|
|
|
ovni_test("nosv-nested-tasks-bad" "driver.sh")
|
2022-06-02 15:46:22 +02:00
|
|
|
ovni_test("nosv-task-types" "mp-driver.sh")
|
2022-06-03 11:36:27 +02:00
|
|
|
ovni_test("nosv-pause" "mp-driver.sh")
|