mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-15 09:17:44 -04:00
* Submodule wolfSSL and move wolfSSL and WolfSSL-FIPS-Ready to ThirdParty folder. * Update VS studio project. * Update FIPS project settings. * Update FIPS demo readme. * Add md to ignored file extensions.
24 lines
289 B
Bash
24 lines
289 B
Bash
#!/bin/sh
|
|
#
|
|
#
|
|
# Our valgrind "error" wrapper.
|
|
|
|
TMP="valgrind.tmp.$$"
|
|
|
|
valgrind --suppressions=valgrind-bash.supp --leak-check=full -q "$@" 2> $TMP
|
|
|
|
result="$?"
|
|
|
|
# verify no errors
|
|
|
|
output="`cat $TMP`"
|
|
|
|
if [ "$output" != "" ]; then
|
|
cat $TMP >&2
|
|
result=1
|
|
fi
|
|
|
|
rm $TMP
|
|
|
|
exit $result
|
|
|