X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-c-bindings;a=blobdiff_plain;f=genbindings.sh;fp=genbindings.sh;h=bdf3794410655601b6d8ac23b9928dd82795c17e;hp=fd797d7978e08e3702f98fb1a70d5d44de9463b9;hb=0ba47de779032dfb5d6a3587a17fcc31e1e659f9;hpb=00ed41fad818748a795634e82040b04c1ea4455d diff --git a/genbindings.sh b/genbindings.sh index fd797d7..bdf3794 100755 --- a/genbindings.sh +++ b/genbindings.sh @@ -9,6 +9,18 @@ if [ ! -d "$1/lightning" -o "$2" != "true" -a "$2" != "false" ]; then exit 1 fi +SKIP_TESTS_ARGUMENT=$3 +SKIP_TESTS=false + +if [ ! -z "$SKIP_TESTS_ARGUMENT" ]; then + if [ "$SKIP_TESTS_ARGUMENT" != "skip-tests" ]; then + echo "To skip tests, usage must be: $0 path-to-rust-lightning allow-std skip-tests" + exit 1 + else + SKIP_TESTS=true + fi +fi + export LC_ALL=C # On reasonable systems, we can use realpath here, but OSX is a diva with 20-year-old software. @@ -249,6 +261,11 @@ else sed -i '' 's/#include /#include "ldk_rust_types.h"/g' include/lightning.h fi +if $SKIP_TESTS; then + echo "Skipping tests!" + exit 0 +fi + # Build C++ class methods which call trait methods echo "Updating C++ header, this may take some time, especially on macOS" set +x # Echoing every command is very verbose here