15ec63750e
* Enable panic=abort * Update remaining crate versions to 1.5 * Run tests in release mode * Enable panic=abort for release profile only * Added travis_wait * Travis timeout set to 40
24 lines
343 B
Bash
Executable File
24 lines
343 B
Bash
Executable File
#!/bin/sh
|
|
# Running Parity Full Test Sute
|
|
|
|
FEATURES="json-tests"
|
|
OPTIONS="--release"
|
|
|
|
case $1 in
|
|
--no-json)
|
|
FEATURES="ipc"
|
|
shift # past argument=value
|
|
;;
|
|
--no-release)
|
|
OPTIONS=""
|
|
shift
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
|
|
. ./scripts/targets.sh
|
|
cargo test -j 8 $OPTIONS --features "$FEATURES" $TARGETS $1 \
|
|
|