mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
35561a9e41
* v1.4.19-p1 * remove integrity check from startup
18 lines
578 B
Bash
Executable File
18 lines
578 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
# Run tests for the node package. Takes care of linking the native VDF.
|
|
# Assumes that the VDF library has been built by running the generate.sh script in the `../vdf` directory.
|
|
|
|
ROOT_DIR="${ROOT_DIR:-$( cd "$(dirname "$(realpath "$( dirname "${BASH_SOURCE[0]}" )")")" >/dev/null 2>&1 && pwd )}"
|
|
|
|
NODE_DIR="$ROOT_DIR/node"
|
|
BINARIES_DIR="$ROOT_DIR/target/release"
|
|
|
|
# Link the native VDF and execute tests
|
|
pushd "$NODE_DIR" > /dev/null
|
|
CGO_LDFLAGS="-L$BINARIES_DIR -lvdf -lbls48581 -ldl" \
|
|
CGO_ENABLED=1 \
|
|
GOEXPERIMENT=arenas \
|
|
go test "$@"
|