3ff72794e5
* implement From<&'static str> for Secret * Dev account. * Fix Secret semantics.
28 lines
385 B
Bash
Executable File
28 lines
385 B
Bash
Executable File
#!/bin/sh
|
|
# Running Parity Full Test Sute
|
|
|
|
FEATURES="json-tests"
|
|
OPTIONS="--release"
|
|
|
|
case $1 in
|
|
--no-json)
|
|
FEATURES="ipc"
|
|
shift # past argument=value
|
|
;;
|
|
--no-release)
|
|
OPTIONS=""
|
|
shift
|
|
;;
|
|
--no-run)
|
|
OPTIONS="--no-run"
|
|
shift
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
|
|
. ./scripts/targets.sh
|
|
cargo test -j 8 $OPTIONS --features "$FEATURES" $TARGETS $1 \
|
|
|