Files
solana/ci/test-erasure.sh

16 lines
247 B
Bash
Raw Normal View History

2018-05-25 10:56:43 -07:00
#!/bin/bash -e
2018-05-29 14:27:25 -07:00
set -o xtrace
2018-06-05 13:49:41 -07:00
cd "$(dirname "$0")/.."
2018-05-25 10:56:43 -07:00
./fetch-perf-libs.sh
2018-05-25 10:56:43 -07:00
2018-05-29 22:39:38 -07:00
export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH
2018-05-25 10:56:43 -07:00
2018-06-05 13:30:36 -07:00
# shellcheck disable=SC1090 # <-- shellcheck can't follow ~
2018-06-05 13:52:46 -07:00
source ~/.cargo/env
2018-05-25 10:56:43 -07:00
cargo test --features="erasure"
exit 0