4ae83f3004
* fix compilation and add it to the ci run * no separator? * use quotes and spaces
19 lines
285 B
Bash
Executable File
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 \
|
|
|