4e72608441
* fixed compilation * Fix warnings * fix remaining tests * add to ci and fix test.sh
19 lines
276 B
Bash
Executable File
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 \
|
|
|