[修改] 增加freeRTOS
1. 版本FreeRTOSv202212.01,命名为kernel;
This commit is contained in:
24
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/valgrind-error.sh
vendored
Executable file
24
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/valgrind-error.sh
vendored
Executable file
@ -0,0 +1,24 @@
|
||||
#!/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
|
||||
|
||||
Reference in New Issue
Block a user