Skip to content

Commit 227b671

Browse files
starknet_os_flow_tests: add daily fuzz test seed offset
1 parent 8d11fbc commit 227b671

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

crates/starknet_os_flow_tests/src/fuzz_tests.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1567,7 +1567,10 @@ async fn test_daily_fuzz_seed(
15671567
let day: u64 = now.day().into();
15681568
let month: u64 = now.month().into();
15691569
let year: u64 = now.year().try_into().unwrap();
1570-
let seed = day * 100000000 + month * 1000000 + year * 100 + inner_seed;
1570+
// The offset can be used to shift the daily seed. Increment if a known (rare) issue is found
1571+
// and is being taken care of separately, to unblock the CI.
1572+
let offset = 0;
1573+
let seed = offset * 10000000000 + day * 100000000 + month * 1000000 + year * 100 + inner_seed;
15711574
fuzz_test_body(seed, 10, filter).await;
15721575
}
15731576

0 commit comments

Comments
 (0)