1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Skip tests failing in riscv test environment
These tests are very flaky on the Debci infrastructure for riscv
Forwarded: not-needed
X-Not-Forwarded-Reason: This only applies to Debci environments
Author: Luca Boccassi <bluca@debian.org>
--- a/app/test/test_eventdev.c
+++ b/app/test/test_eventdev.c
@@ -1344,7 +1344,11 @@
static int
test_eventdev_selftest_sw(void)
{
+#if defined(RTE_ARCH_RISCV)
+ return TEST_SKIPPED;
+#else
return test_eventdev_selftest_impl("event_sw", "");
+#endif
}
static int
|