openethereum/test.sh

19 lines
294 B
Bash
Raw Normal View History

2016-02-16 11:12:29 +01:00
#!/bin/sh
# Running Parity Full Test Sute
2016-07-11 18:17:54 +02:00
FEATURES="--features ethcore/json-tests"
case $1 in
--no-json)
FEATURES=""
shift # past argument=value
;;
*)
# unknown option
;;
esac
. ./scripts/targets.sh
2016-07-18 10:39:57 +02:00
cargo test --release --verbose $FEATURES $TARGETS $1 \
2016-07-11 18:17:54 +02:00