ci(esp_security): Add config to enable FPGA-related tests

This commit is contained in:
harshal.patil
2024-10-03 15:17:22 +05:30
parent 9e3a846356
commit e12c261b1b
7 changed files with 28 additions and 10 deletions

View File

@@ -34,7 +34,7 @@ static void run_all_tests(void)
RUN_TEST_GROUP(key_manager);
#endif
#if CONFIG_IDF_ENV_FPGA
#if CONFIG_CRYPTO_TEST_APP_ENABLE_FPGA_TESTS
#if CONFIG_SOC_HMAC_SUPPORTED && CONFIG_CRYPTO_TEST_APP_ENABLE_HMAC_TESTS
RUN_TEST_GROUP(hmac);
@@ -48,7 +48,7 @@ static void run_all_tests(void)
RUN_TEST_GROUP(ecdsa)
#endif
#endif /* CONFIG_IDF_ENV_FPGA */
#endif /* CONFIG_CRYPTO_TEST_APP_ENABLE_FPGA_TESTS */
}
static void test_task(void *pvParameters)