Import wolfssl

This commit is contained in:
2016-03-01 22:49:12 +01:00
parent fdf009c023
commit 6288703488
638 changed files with 276962 additions and 0 deletions

22
3P/wolfssl/valgrind-error.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/sh
#
#
# Our valgrind "error" wrapper.
valgrind --leak-check=full -q "$@" 2> valgrind.tmp
result="$?"
# verify no errors
output="`cat valgrind.tmp`"
if [ "$output" != "" ]; then
cat valgrind.tmp >&2
result=1
fi
rm valgrind.tmp
exit $result