From ba35f5adbdf01d072b5e3522c8728382a451acd3 Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 30 Jul 2026 00:12:20 +0200 Subject: [PATCH] tests: add test_wolfevent.c to CMakeLists.txt (cmake build lane) api.c references test_wc_WolfEventDecisionCoverage via TEST_WOLFEVENT_DECLS, but the new tests/api/test_wolfevent.c was only added to tests/api/include.am, so the cmake unit-test build never compiled it -> undefined symbol at link (GitHub Actions "WolfSSL CMake Build Tests" / Build wolfssl). Mirror the include.am addition into the CMakeLists.txt unit_test source list. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ac7260a13e..8705b5b022 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4395,6 +4395,7 @@ if(WOLFSSL_EXAMPLES) tests/api/test_error.c tests/api/test_random.c tests/api/test_wolfentropy.c + tests/api/test_wolfevent.c tests/api/test_wolfmath.c tests/api/test_rsa.c tests/api/test_dsa.c