Skip to content

Commit 90265cc

Browse files
committed
test
1 parent 2b0ef7a commit 90265cc

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

testsuite/forge-cli/src/suites/land_blocking.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Parts of the project are originally copyright © Meta Platforms, Inc.
33
// SPDX-License-Identifier: Apache-2.0
44

5-
use super::ungrouped::mixed_compatible_emit_job;
5+
use super::ungrouped::{mixed_compatible_emit_job, single_cluster_test};
66
use crate::{suites::realistic_environment::realistic_env_max_load_test, TestCommand};
77
use aptos_forge::{success_criteria::SuccessCriteria, ForgeConfig};
88
use aptos_testcases::{
@@ -18,7 +18,8 @@ pub(crate) fn get_land_blocking_test(
1818
) -> Option<ForgeConfig> {
1919
let test = match test_name {
2020
"land_blocking" | "realistic_env_max_load" => {
21-
realistic_env_max_load_test(duration, test_cmd, 7, 5)
21+
// realistic_env_max_load_test(duration, test_cmd, 7, 5)
22+
single_cluster_test(duration, 5, 5)
2223
},
2324
"compat" => compat(),
2425
"framework_upgrade" => framework_upgrade(),

testsuite/forge-cli/src/suites/ungrouped.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ pub(crate) fn single_cluster_test(
522522
}
523523

524524
// Create the test
525-
let mempool_backlog = 300;
525+
let mempool_backlog = 100;
526526
ForgeConfig::default()
527527
.with_initial_validator_count(NonZeroUsize::new(num_validators).unwrap())
528528
.with_initial_fullnode_count(num_fullnodes)

0 commit comments

Comments
 (0)