* The front-end for each hard-fork, also EIP-160. * Address EIP161 a/c * Include EIP-161b * EIP-161 part d. * Fix test build. * Fix one test, add another. * Fix use of bloom & renaming. * Fixed tests * Initial groundwork for EIP-155 * Fix minor bug. * Fix all tests finally. * Rest of EIP-155. * Add tests for EIP-155 algorithm. Update transaction tests validation. * Address grumbles. * Remove unused code. * Resolve IPC issues * Fixed tests * ipc backports * Fixing random test failures (#2577) * Fix SUICIDE gas mechanism and add consensus tests. * Remove commented code. * Set Frontier hardfork block number * Transaction tests, * Fixed tests * Removed banning queue
19 lines
278 B
Bash
Executable File
19 lines
278 B
Bash
Executable File
#!/bin/sh
|
|
# Running Parity Full Test Sute
|
|
|
|
FEATURES="json-tests"
|
|
|
|
case $1 in
|
|
--no-json)
|
|
FEATURES=""
|
|
shift # past argument=value
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
|
|
. ./scripts/targets.sh
|
|
cargo test --release --features "$FEATURES" $TARGETS $1 \
|
|
|