diff --git a/parity/run.rs b/parity/run.rs index 7d8ef1ac7..c2b07f487 100644 --- a/parity/run.rs +++ b/parity/run.rs @@ -30,8 +30,6 @@ use ethcore::account_provider::AccountProvider; use ethcore::miner::{Miner, MinerService, ExternalMiner, MinerOptions}; use ethsync::SyncConfig; use informant::Informant; -#[cfg(feature="ipc")] -use ethcore::client::ChainNotify; use rpc::{HttpServer, IpcServer, HttpConfiguration, IpcConfiguration}; use signer::SignerServer; diff --git a/test.sh b/test.sh index 773a7127e..666f10d06 100755 --- a/test.sh +++ b/test.sh @@ -1,11 +1,11 @@ #!/bin/sh # Running Parity Full Test Sute -FEATURES="--features json-tests" +FEATURES="json-tests ipc" case $1 in --no-json) - FEATURES="" + FEATURES="ipc" shift # past argument=value ;; *) @@ -14,5 +14,5 @@ case $1 in esac . ./scripts/targets.sh -cargo test --release $FEATURES $TARGETS $1 \ +cargo test --release --features "$FEATURES" $TARGETS $1 \