diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-21 11:40:09 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-21 11:40:51 -0400 |
commit | 265f4e249da104c964e15ab004b48ca1f47feec5 (patch) | |
tree | 1ab963c9edba6143d58515d5333ee6f5af68bc57 /tests | |
parent | 744e47f9ce87ada87bbb5ba16170c341bab3c580 (diff) | |
download | stasis-265f4e249da104c964e15ab004b48ca1f47feec5.tar.gz |
Add BUILD_TESTING_RT build option
* The user can choose to (not) run the long scripted statis test(s)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9748196..0da290f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -14,7 +14,7 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/data/result.xml ${CMAKE_CURRENT_BINAR configure_file(${CMAKE_CURRENT_SOURCE_DIR}/data/result_error.xml ${CMAKE_CURRENT_BINARY_DIR} COPYONLY) file(GLOB source_files "test_*.c") -if (BASH_PROGRAM) +if (BASH_PROGRAM AND BUILD_TESTING_RT) add_test (rt_generic ${BASH_PROGRAM} ${CMAKE_CURRENT_SOURCE_DIR}/rt_generic.sh) endif() |