227bf4b8c5
* Run cargo with verbose flag when testing * use full verbose flag
24 lines
348 B
Bash
Executable File
24 lines
348 B
Bash
Executable File
#!/bin/sh
|
|
# Running Parity Full Test Sute
|
|
|
|
FEATURES="json-tests"
|
|
OPTIONS="--verbose --release"
|
|
|
|
case $1 in
|
|
--no-json)
|
|
FEATURES="ipc"
|
|
shift # past argument=value
|
|
;;
|
|
--no-release)
|
|
OPTIONS=""
|
|
shift
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
|
|
. ./scripts/targets.sh
|
|
cargo test $OPTIONS --features "$FEATURES" $TARGETS $1 \
|
|
|