File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ if $RUN_CPP_TESTS; then
349
349
if [ " $2 " = " true" ]; then
350
350
g++ $LOCAL_CFLAGS -std=c++11 -Wall -g -pthread -DREAL_NET -I../ldk-net ldk_net.o demo.cpp target/debug/libldk.a -ldl -lm
351
351
if [ -x " ` which valgrind` " -a " $( uname -m) " != " ppc64le" ]; then
352
- valgrind --error-exitcode=4 --memcheck:leak-check=full --show-leak-kinds=all ./a.out
352
+ valgrind --suppressions=valgrind-suppressions.txt -- error-exitcode=4 --memcheck:leak-check=full --show-leak-kinds=all ./a.out
353
353
echo
354
354
else
355
355
echo " WARNING: Please install valgrind for more testing"
Original file line number Diff line number Diff line change
1
+ {
2
+ Apparently rust stdlib accesses uninitialized values while debug'ing a duration
3
+ Memcheck:Cond
4
+ ...
5
+ fun:_ZN57_$LT$core..time..Duration$u20$as$u20$core..fmt..Debug$*
6
+ }
You can’t perform that action at this time.
0 commit comments