mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-05 00:40:09 +00:00
Add detection for zlib headers to all.sh
This commit is contained in:
parent
c40b685837
commit
f2e2902c5a
@ -708,6 +708,17 @@ component_test_zlib_make() {
|
|||||||
msg "test: ssl-opt.sh (zlib, make)"
|
msg "test: ssl-opt.sh (zlib, make)"
|
||||||
if_build_succeeded tests/ssl-opt.sh
|
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() {
|
component_test_zlib_cmake() {
|
||||||
msg "build: zlib enabled, cmake"
|
msg "build: zlib enabled, cmake"
|
||||||
@ -721,6 +732,9 @@ component_test_zlib_cmake() {
|
|||||||
msg "test: ssl-opt.sh (zlib, cmake)"
|
msg "test: ssl-opt.sh (zlib, cmake)"
|
||||||
if_build_succeeded tests/ssl-opt.sh
|
if_build_succeeded tests/ssl-opt.sh
|
||||||
}
|
}
|
||||||
|
support_test_zlib_cmake () {
|
||||||
|
support_test_zlib_make "$@"
|
||||||
|
}
|
||||||
|
|
||||||
component_test_ref_configs () {
|
component_test_ref_configs () {
|
||||||
msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
|
msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
|
||||||
|
Loading…
x
Reference in New Issue
Block a user