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 /libs/acpi/CMakeLists.txt | |
| parent | 0092b0f0750e85e1a6e97a00ae21d3d1572b17ef (diff) | |
| download | kernel-a7700e8a8fd649be43150f67c94fd02cf72b03a1.tar.xz kernel-a7700e8a8fd649be43150f67c94fd02cf72b03a1.zip | |
build: separate normal from stress tests
Diffstat (limited to 'libs/acpi/CMakeLists.txt')
| -rw-r--r-- | libs/acpi/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libs/acpi/CMakeLists.txt b/libs/acpi/CMakeLists.txt index 4bd23d47..77992695 100644 --- a/libs/acpi/CMakeLists.txt +++ b/libs/acpi/CMakeLists.txt @@ -9,6 +9,12 @@ project("acpi" include("CTest") #[============================================================================[ +# Global Build System Options +#]============================================================================] + +option(ACPI_ENABLE_TEST_COVERAGE "Enable generation of test coverage" ON) + +#[============================================================================[ # Library #]============================================================================] @@ -85,7 +91,7 @@ if(BUILD_TESTING) set_source_files_properties("acpi/test_data/tables.S" PROPERTIES OBJECT_DEPENDS "${GENERATED_TABLE_BLOBS}") - if(COMMAND "enable_coverage" AND NOT TEACHOS_ENABLE_TEST_TSAN) + if(COMMAND "enable_coverage" AND ACPI_ENABLE_TEST_COVERAGE) enable_coverage("acpi") endif() |
