diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-26 23:15:47 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-26 23:15:47 +0200 |
| commit | a7700e8a8fd649be43150f67c94fd02cf72b03a1 (patch) | |
| tree | 1d50976f7bdeeddafa6f7f0fab00490c59b7250a /CMakeLists.txt | |
| parent | 0092b0f0750e85e1a6e97a00ae21d3d1572b17ef (diff) | |
| download | kernel-a7700e8a8fd649be43150f67c94fd02cf72b03a1.tar.xz kernel-a7700e8a8fd649be43150f67c94fd02cf72b03a1.zip | |
build: separate normal from stress tests
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ac8dc04..45cdbb0b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,8 +41,12 @@ endif() option(TEACHOS_ENABLE_LINTING "Enable linting during build" ON) option(TEACHOS_GENERATE_DOCS "Generate documentation during build" ON) option(TEACHOS_ENABLE_TEST_SANITIZERS "Enable sanitizers for test executables" ON) +option(TEACHOS_ENABLE_TEST_COVERAGE "Enable generation of test coverage" ON) option(TEACHOS_ENABLE_TEST_TSAN "Enable TSan for the test executable" OFF) +set(ACPI_ENABLE_TEST_COVERAGE ${TEACHOS_ENABLE_TEST_COVERAGE}) +set(KSTD_ENABLE_TEST_COVERAGE ${TEACHOS_ENABLE_TEST_COVERAGE}) + #[============================================================================[ # Global Build System Configuration #]============================================================================] |
