main/zstd: disable tests on 32-bit arm due to issues caused by having 160 threads

This commit is contained in:
Ariadne Conill 2021-07-01 06:17:14 -06:00
parent e930282f1e
commit bd26becbfe

View File

@ -26,6 +26,10 @@ case "$CARCH" in
armhf) export CFLAGS="$CFLAGS -DMEM_FORCE_MEMORY_ACCESS=0" ;;
esac
case "$CARCH" in
arm*) options="!check" ;;
esac
build() {
unset CPPFLAGS
local _moreflags="-O2"