File: disable_riscv_autopkgtest_fails.patch

package info (click to toggle)
dpdk 24.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 121,168 kB
  • sloc: ansic: 2,206,055; python: 11,866; sh: 4,627; makefile: 2,025; awk: 70
file content (19 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (3)
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