From 846a29dc3bf6f2346670426d491f8eb58bae56e1 Mon Sep 17 00:00:00 2001 From: Tomasz Gromadzki Date: Wed, 21 Jun 2023 22:04:45 +0200 Subject: [PATCH] common: silently skip ppc64 tests ppc64 test execution has been disabled by #5729. All ppc64 tests are silently skipped as there is no easy way to disable them. Signed-off-by: Tomasz Gromadzki --- src/test/unittest/unittest.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/unittest/unittest.sh b/src/test/unittest/unittest.sh index 8281bca9d0b..f78de5f7e3c 100644 --- a/src/test/unittest/unittest.sh +++ b/src/test/unittest/unittest.sh @@ -929,6 +929,7 @@ function require_x86_64() { # require_ppc64 -- Skip tests if the running platform is not ppc64 or ppc64le # function require_ppc64() { + exit 0 require_arch "ppc64" "ppc64le" "ppc64el" }