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
|