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-08-22 16:40:08 +02:00
|
|
|
include(macros.cmake)
|
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")
|
2022-08-22 16:40:08 +02:00
|
|
|
ovni_test(NAME flush-overhead)
|
2022-06-21 15:26:20 +02:00
|
|
|
endif()
|
|
|
|
|
2022-08-22 16:40:08 +02:00
|
|
|
ovni_test(NAME flush)
|
|
|
|
ovni_test(NAME mp-simple MP)
|
|
|
|
ovni_test(NAME mp-rank MP)
|
|
|
|
ovni_test(NAME nosv-nested-tasks)
|
|
|
|
ovni_test(NAME nosv-nested-tasks-bad
|
|
|
|
SHOULD_FAIL REGEX "fatal: unknown task type id 1")
|
|
|
|
ovni_test(NAME nosv-task-types MP)
|
|
|
|
ovni_test(NAME nosv-pause MP)
|
|
|
|
|
2022-07-07 16:31:15 +02:00
|
|
|
ovni_test(NAME nanos6-nested-tasks)
|
|
|
|
ovni_test(NAME nanos6-nested-tasks-bad)
|
|
|
|
ovni_test(NAME nanos6-task-types MP)
|
|
|
|
ovni_test(NAME nanos6-blocking MP)
|
|
|
|
ovni_test(NAME nanos6-subsystems MP)
|
|
|
|
|
2022-08-22 16:40:08 +02:00
|
|
|
if(BUILD_RT_TESTING)
|
|
|
|
add_subdirectory(rt)
|
|
|
|
endif()
|