Merge pull request #7003 from lpy4105/issue/do-not-run-x86-tests-on-arm64

all.sh: test_m32_xx is not supported on arm64 host
This commit is contained in:
Gilles Peskine 2023-02-07 10:26:10 +01:00 committed by GitHub
commit a0c806aac1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3265,7 +3265,7 @@ component_test_m32_o0 () {
}
support_test_m32_o0 () {
case $(uname -m) in
*64*) true;;
amd64|x86_64) true;;
*) false;;
esac
}