Merge branch '11' into snapshot

This commit is contained in:
Gianfranco Costamagna 2020-10-07 12:39:51 +02:00
commit cc82bec3b3

View File

@ -345,7 +345,7 @@ if test $NBLINES -lt 100; then
exit 42
fi
if [ $DEB_HOST_ARCH != "arm64" -a $DEB_HOST_ARCH != "ppc64el" ]; then
if [ $DEB_HOST_ARCH != "arm64" -a $DEB_HOST_ARCH != "armhf" -a $DEB_HOST_ARCH != "ppc64el" ]; then
# Fails on arm64 with
# /usr/lib/llvm-10/lib/clang/10.0.0/include/mmintrin.h:33:5: error: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'?
echo '#include <emmintrin.h>' > foo.cc
@ -811,7 +811,7 @@ if ! grep "No such file or directory" foo.log; then
if ! ./a.out 2>&1 | grep -q -E "(Test unit written|PreferSmall)"; then
echo "fuzzer. Output:"
./a.out || true
if [ $DEB_HOST_ARCH != "arm64" -a $DEB_HOST_ARCH != "ppc64el" ]; then
if [ $DEB_HOST_ARCH != "arm64" -a $DEB_HOST_ARCH != "armhf" -a $DEB_HOST_ARCH != "ppc64el" ]; then
# Don't fail on arm64 and ppc64el
exit 42
fi