Skip to content
Snippets Groups Projects
Verified Commit beb849d0 authored by Lars Bilke's avatar Lars Bilke
Browse files

[T] AddTest(): LARGE benchmarks are now determined by RUNTIME > 60.

parent 81acdee5
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,9 @@ ...@@ -39,6 +39,9 @@
# the benchmark output directory. # the benchmark output directory.
function (AddTest) function (AddTest)
# settings
set(LARGE_RUNTIME 60)
# parse arguments # parse arguments
set(options NONE) set(options NONE)
set(oneValueArgs EXECUTABLE PATH NAME WRAPPER TESTER ABSTOL RELTOL RUNTIME DEPENDS) set(oneValueArgs EXECUTABLE PATH NAME WRAPPER TESTER ABSTOL RELTOL RUNTIME DEPENDS)
...@@ -67,6 +70,10 @@ function (AddTest) ...@@ -67,6 +70,10 @@ function (AddTest)
set(AddTest_EXECUTABLE_ARGS -o ${AddTest_BINARY_PATH_NATIVE} ${AddTest_EXECUTABLE_ARGS}) set(AddTest_EXECUTABLE_ARGS -o ${AddTest_BINARY_PATH_NATIVE} ${AddTest_EXECUTABLE_ARGS})
endif() endif()
if(${AddTest_RUNTIME} GREATER ${LARGE_RUNTIME})
string(PREPEND AddTest_NAME "LARGE_")
endif()
# --- Implement wrappers --- # --- Implement wrappers ---
# check requirements, disable if not met # check requirements, disable if not met
if(${AddTest_REQUIREMENTS}) if(${AddTest_REQUIREMENTS})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment