mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
18 lines
596 B
Bash
Executable File
18 lines
596 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
# Run tests for the bulletproofs package. Takes care of linking the native Bulletproofs.
|
|
# Assumes that the Bulletproofs 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/bulletproofs"
|
|
BINARIES_DIR="$ROOT_DIR/target/release"
|
|
|
|
# Link the native Bulletproofs and execute tests
|
|
pushd "$NODE_DIR" > /dev/null
|
|
CGO_LDFLAGS="-L$BINARIES_DIR -lbulletproofs -ldl -lm" \
|
|
CGO_ENABLED=1 \
|
|
go test "$@"
|
|
|