1 Star 0 Fork 0

黄文彬/wolfssl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
valgrind-error.sh 289 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sean Parkinson 提交于 2020-08-10 11:15 +08:00 . Fix valgrind check to ignore bash leak
#!/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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wenbinhuang/wolfssl.git
git@gitee.com:wenbinhuang/wolfssl.git
wenbinhuang
wolfssl
wolfssl
master

搜索帮助