diff --git a/tests/posix/timers/src/timer.c b/tests/posix/timers/src/timer.c index faad7f659fc..1d4936d6a4b 100644 --- a/tests/posix/timers/src/timer.c +++ b/tests/posix/timers/src/timer.c @@ -154,14 +154,4 @@ static void after(void *arg) } } -static void before(void *arg) -{ - ARG_UNUSED(arg); - - if (!IS_ENABLED(CONFIG_DYNAMIC_THREAD)) { - /* skip redundant testing if there is no thread pool / heap allocation */ - ztest_test_skip(); - } -} - -ZTEST_SUITE(posix_timers, NULL, NULL, before, after, NULL); +ZTEST_SUITE(posix_timers, NULL, NULL, NULL, after, NULL);