test: move lcores/pdump/pflock/ticketlock out of fast suite
Checks
Commit Message
From: Luca Boccassi <bluca@debian.org>
These tests are failing with timeouts on build machines with large amount
of cores, so move them out of the fast suite, which should complete in seconds.
33/77 DPDK:fast-tests / lcores_autotest TIMEOUT 50.01s
https://build.opensuse.org/package/live_build_log/home:bluca:dpdk/dpdk/Debian_11/aarch64
43/77 DPDK:fast-tests / pdump_autotest TIMEOUT 120.11s killed by signal 15 SIGTERM
https://ci.debian.net/packages/d/dpdk/unstable/ppc64el/41544027/#S10
45/77 DPDK:fast-tests / pflock_autotest TIMEOUT 120.14s killed by signal 15 SIGTERM
72/77 DPDK:fast-tests / ticketlock_autotest TIMEOUT 120.12s killed by signal 15 SIGTERM
https://ci.debian.net/packages/d/dpdk/unstable/amd64/41560884/#S10
Signed-off-by: Luca Boccassi <bluca@debian.org>
---
app/test/test_lcores.c | 2 +-
app/test/test_pdump.c | 2 +-
app/test/test_pflock.c | 2 +-
app/test/test_ticketlock.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
@@ -411,4 +411,4 @@ test_lcores(void)
return TEST_SUCCESS;
}
-REGISTER_FAST_TEST(lcores_autotest, true, true, test_lcores);
+REGISTER_TEST_COMMAND(lcores_autotest, test_lcores);
@@ -219,4 +219,4 @@ test_pdump(void)
return TEST_SUCCESS;
}
-REGISTER_FAST_TEST(pdump_autotest, true, false, test_pdump);
+REGISTER_TEST_COMMAND(pdump_autotest, test_pdump);
@@ -193,4 +193,4 @@ test_pflock(void)
return 0;
}
-REGISTER_FAST_TEST(pflock_autotest, true, true, test_pflock);
+REGISTER_TEST_COMMAND(pflock_autotest, test_pflock);
@@ -314,4 +314,4 @@ test_ticketlock(void)
return ret;
}
-REGISTER_FAST_TEST(ticketlock_autotest, true, true, test_ticketlock);
+REGISTER_TEST_COMMAND(ticketlock_autotest, test_ticketlock);