File: disable_arm64_autopkgtest_fails.patch

package info (click to toggle)
dpdk 25.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 127,892 kB
  • sloc: ansic: 2,358,479; python: 16,426; sh: 4,474; makefile: 1,713; awk: 70
file content (28 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: Skip tests failing in arm64 test environment
 These tests are very flaky on the Debci infrastructure and now also
 started to affect arm64 without DPDK changing.
Forwarded: not-needed
X-Not-Forwarded-Reason: This only applies to Debci environments
Author: Christian Ehrhardt <christian.ehrhardt@canonical.com>
--- a/app/test/test_pflock.c
+++ b/app/test/test_pflock.c
@@ -163,7 +163,7 @@ test_pflock(void)
 {
 	int i;
 
-#if defined(__PPC64__)
+#if defined(__PPC64__) || defined(__aarch64__)
 	return TEST_SKIPPED;
 #endif
 
--- a/app/test/test_ticketlock.c
+++ b/app/test/test_ticketlock.c
@@ -207,7 +207,7 @@ test_ticketlock(void)
 	int ret = 0;
 	int i;
 
-#if defined(__PPC64__)
+#if defined(__PPC64__) || defined(__aarch64__)
 	return TEST_SKIPPED;
 #endif