openethereum/test.sh
Denis S. Soldatov aka General-Beck 61eb2a9104 Update test.sh
add -j 8 for test
2016-12-01 07:48:06 +07:00

24 lines
353 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 -j 8 $OPTIONS --features "$FEATURES" $TARGETS $1 \