openethereum/test.sh
Nikolay Volf 4e72608441 Fix ipc tests and bring to CI (#1789)
* fixed compilation

* Fix warnings

* fix remaining tests

* add to ci and fix test.sh
2016-08-01 06:32:07 -07:00

19 lines
276 B
Bash
Executable File

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