2016-02-16 11:12:29 +01:00
|
|
|
#!/bin/sh
|
2017-09-12 09:15:37 +02:00
|
|
|
# Running Parity Full Test Suite
|
2016-02-16 11:12:29 +01:00
|
|
|
|
2016-10-18 16:36:43 +02:00
|
|
|
FEATURES="json-tests"
|
2016-12-08 11:31:57 +01:00
|
|
|
OPTIONS="--release"
|
2016-07-11 18:17:54 +02:00
|
|
|
|
|
|
|
case $1 in
|
|
|
|
--no-json)
|
2016-08-10 13:06:24 +02:00
|
|
|
FEATURES="ipc"
|
2016-07-11 18:17:54 +02:00
|
|
|
shift # past argument=value
|
|
|
|
;;
|
2016-09-01 12:00:00 +02:00
|
|
|
--no-release)
|
|
|
|
OPTIONS=""
|
|
|
|
shift
|
|
|
|
;;
|
2017-05-19 17:06:36 +02:00
|
|
|
--no-run)
|
|
|
|
OPTIONS="--no-run"
|
|
|
|
shift
|
|
|
|
;;
|
2016-07-11 18:17:54 +02:00
|
|
|
*)
|
|
|
|
# unknown option
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2017-08-02 12:50:36 +02:00
|
|
|
set -e
|
|
|
|
|
2017-11-20 11:02:48 +01:00
|
|
|
# Validate chainspecs
|
2017-08-02 12:50:36 +02:00
|
|
|
./scripts/validate_chainspecs.sh
|
|
|
|
|
2017-08-28 15:22:59 +02:00
|
|
|
cargo test -j 8 $OPTIONS --features "$FEATURES" --all --exclude evmjit $1
|
2017-11-20 11:02:48 +01:00
|
|
|
|
|
|
|
# Validate --no-default-features build
|
|
|
|
cargo check --no-default-features
|