mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-08-09 04:37:49 +00:00
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 <[email protected]>
This commit is contained in:
@@ -3265,7 +3265,7 @@ component_test_m32_o0 () {
|
||||
}
|
||||
support_test_m32_o0 () {
|
||||
case $(uname -m) in
|
||||
*64*) true;;
|
||||
amd64|x86_64) true;;
|
||||
*) false;;
|
||||
esac
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user