16 lines
247 B
Bash
Executable File
16 lines
247 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
set -o xtrace
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./fetch-perf-libs.sh
|
|
|
|
export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH
|
|
|
|
# shellcheck disable=SC1090 # <-- shellcheck can't follow ~
|
|
source ~/.cargo/env
|
|
cargo test --features="erasure"
|
|
|
|
exit 0
|