summaryrefslogtreecommitdiff
path: root/cmake/config/tests.cmake
blob: c0d0ed844dcb6bda310b0b3f536fb2d969b7217e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Test configuration options

set(DISABLE_TESTS_LOGGING TRUE CACHE BOOL
  "Disable Ouroboros log output in tests")
if(DISABLE_TESTS_LOGGING)
  message(STATUS "Ouroboros logging in test output disabled")
else()
  message(STATUS "Ouroboros logging in test output enabled")
endif()

set(DISABLE_TESTS_CORE_DUMPS TRUE CACHE BOOL
  "Disable core dumps for tests")
if(DISABLE_TESTS_CORE_DUMPS)
  message(STATUS "Core dumps in tests disabled")
else()
  message(STATUS "Core dumps in tests enabled")
endif()

set(MB_ECN_LAB_FULL FALSE CACHE BOOL
  "Run the full mb-ecn lab rate sweep, up to 10 Gb/s")
if(MB_ECN_LAB_FULL)
  message(STATUS "Full mb-ecn lab rate sweep enabled")
endif()