We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f464e9b commit 62231f1Copy full SHA for 62231f1
1 file changed
crates/starknet_os_flow_tests/src/fuzz_tests.rs
@@ -1567,7 +1567,10 @@ async fn test_daily_fuzz_seed(
1567
let day: u64 = now.day().into();
1568
let month: u64 = now.month().into();
1569
let year: u64 = now.year().try_into().unwrap();
1570
- let seed = day * 100000000 + month * 1000000 + year * 100 + inner_seed;
+ // 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;
1574
fuzz_test_body(seed, 10, filter).await;
1575
}
1576
0 commit comments