Skip to content

Commit

Permalink
[omicron-dev] increase test timeout to 30 seconds (#4557)
Browse files Browse the repository at this point in the history
On my machine (Ryzen 7950X) I saw that under load (32 tests running at the same
time), the timeout would quite reliably be hit likely because cockroach was
starved. Increasing it seems pretty harmless.
sunshowers authored Nov 23, 2023
1 parent 36f6abe commit 3f702ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/omicron-dev/tests/test_omicron_dev.rs
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ use subprocess::Redirection;
const CMD_OMICRON_DEV: &str = env!("CARGO_BIN_EXE_omicron-dev");

/// timeout used for various things that should be pretty quick
const TIMEOUT: Duration = Duration::from_secs(15);
const TIMEOUT: Duration = Duration::from_secs(30);

fn path_to_omicron_dev() -> PathBuf {
path_to_executable(CMD_OMICRON_DEV)

0 comments on commit 3f702ef

Please sign in to comment.