From 43ddf0a3b134c0d17d67e4874805a72b69059eb5 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Mon, 14 Jun 2021 14:18:16 -0700 Subject: [PATCH] Execute bdk_ffi_test via valgrind --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 74d0fd4..6e501db 100755 --- a/build.sh +++ b/build.sh @@ -5,8 +5,8 @@ cargo test --features c-headers -- generate_headers # cc export LD_LIBRARY_PATH=`pwd`/target/debug cc cc/bdk_ffi_test.c -o cc/bdk_ffi_test -L target/debug -l bdk_ffi -l pthread -l dl -l m -#valgrind --leak-check=full cc/bdk_ffi_test -cc/bdk_ffi_test +valgrind --leak-check=full cc/bdk_ffi_test +#cc/bdk_ffi_test # bdk-kotlin mkdir -p bdk-kotlin/jar/libs/x86_64_linux