Add detection for zlib headers to all.sh

Signed-off-by: Simon Butcher <simon.butcher@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard 2020-01-24 10:17:20 +01:00 committed by Simon Butcher
parent ae48d86cb1
commit f0658b18dc

View File

@ -662,6 +662,17 @@ component_test_zlib_make() {
msg "test: ssl-opt.sh (zlib, make)"
if_build_succeeded tests/ssl-opt.sh
}
support_test_zlib_make () {
base=support_test_zlib_$$
cat <<'EOF' > ${base}.c
#include "zlib.h"
int main(void) { return 0; }
EOF
gcc -o ${base}.exe ${base}.c -lz 2>/dev/null
ret=$?
rm -f ${base}.*
return $ret
}
component_test_zlib_cmake() {
msg "build: zlib enabled, cmake"
@ -675,6 +686,9 @@ component_test_zlib_cmake() {
msg "test: ssl-opt.sh (zlib, cmake)"
if_build_succeeded tests/ssl-opt.sh
}
support_test_zlib_cmake () {
support_test_zlib_make "$@"
}
component_test_ref_configs () {
msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s