There are quite a number of test cases defined which are not present in any test-suite. Meson warns about these on build, so reduce the warnings by adding external-mem, ipsec-sad, power-caps and secondary timer test cases to the fast-test suite.
Signed-off-by: Bruce Richardson <[email protected]> --- app/test/test_external_mem.c | 2 +- app/test/test_ipsec_sad.c | 2 +- app/test/test_power_cpufreq.c | 2 +- app/test/test_timer_secondary.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/test/test_external_mem.c b/app/test/test_external_mem.c index 0c64b610a9..1c977b749b 100644 --- a/app/test/test_external_mem.c +++ b/app/test/test_external_mem.c @@ -587,4 +587,4 @@ test_external_mem(void) #endif /* !RTE_EXEC_ENV_WINDOWS */ -REGISTER_TEST_COMMAND(external_mem_autotest, test_external_mem); +REGISTER_FAST_TEST(external_mem_autotest, NOHUGE_SKIP, ASAN_OK, test_external_mem); diff --git a/app/test/test_ipsec_sad.c b/app/test/test_ipsec_sad.c index 642643eb63..5e9dfb0f94 100644 --- a/app/test/test_ipsec_sad.c +++ b/app/test/test_ipsec_sad.c @@ -899,4 +899,4 @@ test_ipsec_sad(void) #endif /* !RTE_EXEC_ENV_WINDOWS */ -REGISTER_TEST_COMMAND(ipsec_sad_autotest, test_ipsec_sad); +REGISTER_FAST_TEST(ipsec_sad_autotest, NOHUGE_OK, ASAN_OK, test_ipsec_sad); diff --git a/app/test/test_power_cpufreq.c b/app/test/test_power_cpufreq.c index 1d37b18fed..08bce4c0d1 100644 --- a/app/test/test_power_cpufreq.c +++ b/app/test/test_power_cpufreq.c @@ -679,4 +679,4 @@ test_power_caps(void) #endif REGISTER_FAST_TEST(power_cpufreq_autotest, NOHUGE_SKIP, ASAN_OK, test_power_cpufreq); -REGISTER_TEST_COMMAND(power_caps_autotest, test_power_caps); +REGISTER_FAST_TEST(power_caps_autotest, NOHUGE_OK, ASAN_OK, test_power_caps); diff --git a/app/test/test_timer_secondary.c b/app/test/test_timer_secondary.c index 8580880a56..8bff904ed4 100644 --- a/app/test/test_timer_secondary.c +++ b/app/test/test_timer_secondary.c @@ -225,4 +225,4 @@ test_timer_secondary(void) #endif /* !RTE_EXEC_ENV_WINDOWS */ -REGISTER_TEST_COMMAND(timer_secondary_autotest, test_timer_secondary); +REGISTER_FAST_TEST(timer_secondary_autotest, NOHUGE_SKIP, ASAN_SKIP, test_timer_secondary); -- 2.51.0

