summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Source/WolfSSL/valgrind-error.sh
blob: 7f7441c3e3dd63f6602dd2322f655aa239feb2e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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