Skip to content

Commit

Permalink
Merge pull request #1516 from andyleiserson/timeouts
Browse files Browse the repository at this point in the history
Increase a couple test timeouts
  • Loading branch information
andyleiserson authored Dec 31, 2024
2 parents 8a7d3c2 + 14d8e2a commit c45ef9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ipa-core/src/protocol/dp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,11 @@ mod test {

type OutputValue = BA32;
const NUM_BREAKDOWNS: u32 = 32;
let world = TestWorld::new_with(TestWorldConfig::default().enable_metrics());
let world = TestWorld::new_with(
TestWorldConfig::default()
.with_timeout_secs(30)
.enable_metrics(),
);

let num_bernoulli: u32 = 1_000;
let result: [Vec<Replicated<OutputValue>>; 3] = world
Expand Down
2 changes: 1 addition & 1 deletion ipa-core/src/protocol/hybrid/breakdown_reveal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ mod proptests {
} = input_struct;
let config = TestWorldConfig {
seed,
timeout: Some(Duration::from_secs(20)),
timeout: Some(Duration::from_secs(30)),
..Default::default()
};
let result = TestWorld::<WithShards<PROP_SHARDS>>::with_config(&config)
Expand Down

0 comments on commit c45ef9b

Please sign in to comment.