Move test-validator to own module to reduce core dependencies (#20658)
* Move test-validator to own module to reduce core dependencies * Fix a few TestValidator paths * Use solana_test_validator crate for solana_test_validator bin * Move client int tests to separate crate Co-authored-by: Tyera Eulberg <tyera@solana.com>
This commit is contained in:
@ -46,6 +46,7 @@ solana-runtime = { path = "../runtime", version = "=1.9.0" }
|
||||
solana-sdk = { path = "../sdk", version = "=1.9.0" }
|
||||
solana-send-transaction-service = { path = "../send-transaction-service", version = "=1.9.0" }
|
||||
solana-streamer = { path = "../streamer", version = "=1.9.0" }
|
||||
solana-test-validator = { path = "../test-validator", version = "=1.9.0" }
|
||||
solana-version = { path = "../version", version = "=1.9.0" }
|
||||
solana-vote-program = { path = "../programs/vote", version = "=1.9.0" }
|
||||
symlink = "0.1.0"
|
||||
|
@ -26,7 +26,7 @@ use {
|
||||
solana_streamer::socket::SocketAddrSpace,
|
||||
solana_validator::{
|
||||
admin_rpc_service, dashboard::Dashboard, ledger_lockfile, lock_ledger, println_name_value,
|
||||
redirect_stderr_to_file, test_validator::*,
|
||||
redirect_stderr_to_file, solana_test_validator::*,
|
||||
},
|
||||
std::{
|
||||
collections::HashSet,
|
||||
|
@ -1,6 +1,6 @@
|
||||
#![allow(clippy::integer_arithmetic)]
|
||||
pub use solana_core::test_validator;
|
||||
pub use solana_gossip::cluster_info::MINIMUM_VALIDATOR_PORT_RANGE_WIDTH;
|
||||
pub use solana_test_validator;
|
||||
use {
|
||||
console::style,
|
||||
fd_lock::{RwLock, RwLockWriteGuard},
|
||||
|
Reference in New Issue
Block a user