Remove memory buffer alloc from i386 test in all.sh
Otherwise, the CI fails this test due to timeout.
The buffer allocator is tested e.g. in test_full_cmake_clang().
diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh
index b884e20..7ae1bc5 100755
--- a/tests/scripts/all.sh
+++ b/tests/scripts/all.sh
@@ -1024,6 +1024,9 @@
# Build once with -O0, to compile out the i386 specific inline assembly
msg "build: i386, make, gcc -O0 (ASan build)" # ~ 30s
scripts/config.pl full
+ scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE
+ scripts/config.pl unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
+ scripts/config.pl unset MBEDTLS_MEMORY_DEBUG
make CC=gcc PTHREAD=1 CFLAGS='-O0 -Werror -Wall -Wextra -m32 -fsanitize=address'
msg "test: i386, make, gcc -O0 (ASan build)"