From a89b36757cad9e344a1016e4f81a023e3ab0db30 Mon Sep 17 00:00:00 2001 From: Pengyu Lv Date: Fri, 21 Oct 2022 10:50:26 +0000 Subject: [PATCH] all.sh: test_m32_xx is not supported on arm64 host test_m32_xxx tests are x86 specific, but the support function only identifies a 64-bit system. So the tests will be run on arm64 host and cause a test failure. This change restricts those tests to amd64/x86_64 only. Signed-off-by: Pengyu Lv --- tests/scripts/all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 97d4296820..ada9ec3c66 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -2956,7 +2956,7 @@ component_test_m32_o0 () { } support_test_m32_o0 () { case $(uname -m) in - *64*) true;; + amd64|x86_64) true;; *) false;; esac }