From 1864a3e6bac5f08c32fc8e0b43ec3f0cb48b8cc3 Mon Sep 17 00:00:00 2001 From: Sudarsan Balaji Date: Thu, 14 Oct 2021 00:06:05 +0530 Subject: [PATCH] Add JNA debug_load to gradle script --- test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.sh b/test.sh index 4f83359..f098e4b 100755 --- a/test.sh +++ b/test.sh @@ -17,7 +17,7 @@ help() } test_kotlin() { - (cd bindings/bdk-kotlin && ./gradlew test) + (cd bindings/bdk-kotlin && ./gradlew test -Djna.debug_load=true) } if [ $1 = "-h" ] @@ -25,14 +25,14 @@ then help else cargo test - + # optional tests while [ -n "$1" ]; do # while loop starts - case "$1" in + case "$1" in -h) help ;; -k) test_kotlin ;; *) echo "Option $1 not recognized" ;; esac shift done -fi \ No newline at end of file +fi