solana/ci/test-erasure.sh

14 lines
164 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
cargo test --features="erasure"
exit 0