15 lines
317 B
Bash
15 lines
317 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -eo pipefail -o xtrace
|
||
|
|
||
|
# rust
|
||
|
cargo test --features c-headers -- generate_headers
|
||
|
|
||
|
# cc
|
||
|
export LD_LIBRARY_PATH=`pwd`/target/debug
|
||
|
valgrind --leak-check=full cc/bdk_ffi_test
|
||
|
#cc/bdk_ffi_test
|
||
|
|
||
|
# bdk-kotlin
|
||
|
(cd bdk-kotlin && gradle test)
|
||
|
(cd bdk-kotlin && gradle :aar:connectedDebugAndroidTest)
|