ceremonyclient/vdf/test.sh

18 lines
561 B
Bash
Raw Normal View History

2024-06-08 11:32:45 +00:00
#!/bin/bash
set -euxo pipefail
# Run tests for the vdf package. Takes care of linking the native VDF.
# Assumes that the VDF library has been built by running the generate.sh script in the same directory.
ROOT_DIR="${ROOT_DIR:-$( cd "$(dirname "$(realpath "$( dirname "${BASH_SOURCE[0]}" )")")" >/dev/null 2>&1 && pwd )}"
NODE_DIR="$ROOT_DIR/vdf"
BINARIES_DIR="$ROOT_DIR/target/release"
# Link the native VDF and execute tests
pushd "$NODE_DIR" > /dev/null
CGO_LDFLAGS="-L$BINARIES_DIR -lvdf -ldl" \
CGO_ENABLED=1 \
GOEXPERIMENT=arenas \
go test "$@"