Update the run script

This commit is contained in:
Omar Abdulla
2025-09-02 19:39:26 +03:00
parent 762b45ffd1
commit b4118faa3d
4 changed files with 3 additions and 5 deletions
Generated
-1
View File
@@ -4531,7 +4531,6 @@ dependencies = [
"semver 1.0.26",
"serde",
"serde_json",
"temp-dir",
"tokio",
"tracing",
"tracing-appender",
+1 -1
View File
@@ -408,7 +408,7 @@ where
#[derive(Clone, Debug, Parser, Serialize)]
pub struct ConcurrencyConfiguration {
/// Determines the amount of nodes that will be spawned for each chain.
#[clap(long = "concurrency.number-of-nodes")]
#[clap(long = "concurrency.number-of-nodes", default_value_t = 5)]
pub number_of_nodes: usize,
/// Determines the amount of tokio worker threads that will will be used.
-1
View File
@@ -35,7 +35,6 @@ tracing-subscriber = { workspace = true }
semver = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
temp-dir = { workspace = true }
[lints]
workspace = true
+2 -2
View File
@@ -89,13 +89,13 @@ echo "This may take a while..."
echo ""
# Run the tool
RUST_LOG="error" cargo run --release -- \
RUST_LOG="error" cargo run --release -- execute-tests \
--corpus "$CORPUS_FILE" \
--working-directory "$WORKDIR" \
--concurrency.number-of-nodes 5 \
--kitchensink.path "$SUBSTRATE_NODE_BIN" \
--revive-dev-node.path "$REVIVE_DEV_NODE_BIN" \
--eth_proxy.path "$ETH_RPC_BIN" \
--eth-rpc.path "$ETH_RPC_BIN" \
> logs.log \
2> output.log