Only run flush-overhead test on Release build

This commit is contained in:
Rodrigo Arias 2022-06-21 15:26:20 +02:00
parent 1523553577
commit 6538dbcdd9

View File

@ -33,8 +33,12 @@ macro(ovni_test name driver)
endmacro() endmacro()
ovni_test("flush" "driver.sh") # Only run performance sensitive tests on Release builds
if(CMAKE_BUILD_TYPE STREQUAL "Release")
ovni_test("flush-overhead" "driver.sh") ovni_test("flush-overhead" "driver.sh")
endif()
ovni_test("flush" "driver.sh")
ovni_test("mp-simple" "mp-driver.sh") ovni_test("mp-simple" "mp-driver.sh")
ovni_test("mp-rank" "mp-driver.sh") ovni_test("mp-rank" "mp-driver.sh")
ovni_test("nosv-nested-tasks" "driver.sh") ovni_test("nosv-nested-tasks" "driver.sh")