Skip to content

Commit

Permalink
[cluster test] add reconfig to the pre release suite
Browse files Browse the repository at this point in the history
  • Loading branch information
zekun000 authored and bors-libra committed Sep 21, 2020
1 parent 22bfee5 commit 3dd024c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion testsuite/cluster-test/src/suite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ use crate::{
experiments::{
CompatiblityTestParams, CpuFlamegraphParams, Experiment, ExperimentParam,
PerformanceBenchmarkParams, PerformanceBenchmarkThreeRegionSimulationParams,
RebootRandomValidatorsParams, RecoveryTimeParams, TwinValidatorsParams,
RebootRandomValidatorsParams, ReconfigurationParams, RecoveryTimeParams,
TwinValidatorsParams,
},
};
use anyhow::{format_err, Result};
Expand Down Expand Up @@ -54,6 +55,14 @@ impl ExperimentSuite {
.build(cluster),
));
experiments.push(Box::new(TwinValidatorsParams { pair: 1 }.build(cluster)));
// This can't be run before any experiment that requires clean_data.
experiments.push(Box::new(
ReconfigurationParams {
count: 101,
emit_txn: false,
}
.build(cluster),
));
experiments.push(Box::new(
CpuFlamegraphParams { duration_secs: 60 }.build(cluster),
));
Expand Down

0 comments on commit 3dd024c

Please sign in to comment.