openethereum/test.sh
Nikolay Volf 4ae83f3004 Fix ipc compilation and add ipc feature to test targets (#1902)
* fix compilation and add it to the ci run

* no separator?

* use quotes and spaces
2016-08-10 13:06:24 +02:00

19 lines
285 B
Bash
Executable File

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