diff --git a/testsuite/forge-cli/src/main.rs b/testsuite/forge-cli/src/main.rs index 726a6d39d3427..221c0951068d8 100644 --- a/testsuite/forge-cli/src/main.rs +++ b/testsuite/forge-cli/src/main.rs @@ -603,11 +603,12 @@ fn k8s_test_suite() -> ForgeConfig { fn get_land_blocking_test( test_name: &str, duration: Duration, - test_cmd: &TestCommand, + _test_cmd: &TestCommand, ) -> Option { let test = match test_name { "land_blocking" | "realistic_env_max_load" => { - realistic_env_max_load_test(duration, test_cmd, 7, 5) + // realistic_env_max_load_test(duration, test_cmd, 7, 5) + pfn_const_tps(duration, true, true, false) }, "compat" => compat(), "framework_upgrade" => framework_upgrade(), @@ -2461,7 +2462,7 @@ fn pfn_const_tps( ForgeConfig::default() .with_initial_validator_count(NonZeroUsize::new(7).unwrap()) .with_initial_fullnode_count(7) - .with_emit_job(EmitJobRequest::default().mode(EmitJobMode::ConstTps { tps: 100 })) + .with_emit_job(EmitJobRequest::default().mode(EmitJobMode::ConstTps { tps: 5000 })) .add_network_test(PFNPerformance::new( 7, add_cpu_chaos, @@ -2472,7 +2473,7 @@ fn pfn_const_tps( helm_values["chain"]["epoch_duration_secs"] = epoch_duration_secs.into(); })) .with_success_criteria( - SuccessCriteria::new(95) + SuccessCriteria::new(4500) .add_no_restarts() .add_max_expired_tps(0) .add_max_failed_submission_tps(0)