19 lines
294 B
Bash
Executable File
19 lines
294 B
Bash
Executable File
#!/bin/sh
|
|
# Running Parity Full Test Sute
|
|
|
|
FEATURES="--features ethcore/json-tests"
|
|
|
|
case $1 in
|
|
--no-json)
|
|
FEATURES=""
|
|
shift # past argument=value
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
|
|
. ./scripts/targets.sh
|
|
cargo test --release --verbose $FEATURES $TARGETS $1 \
|
|
|