Skip to content

Commit 382a560

Browse files
starknet_os_flow_tests: add daily fuzz test seed offset
1 parent 0a49942 commit 382a560

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
@@ -1561,7 +1561,10 @@ async fn test_daily_fuzz_seed(
15611561
let day: u64 = now.day().into();
15621562
let month: u64 = now.month().into();
15631563
let year: u64 = now.year().try_into().unwrap();
1564-
let seed = day * 100000000 + month * 1000000 + year * 100 + inner_seed;
1564+
// The offset can be used to shift the daily seed. Increment if a known (rare) issue is found
1565+
// and is being taken care of separately, to unblock the CI.
1566+
let offset = 0;
1567+
let seed = offset * 10000000000 + day * 100000000 + month * 1000000 + year * 100 + inner_seed;
15651568
fuzz_test_body(seed, 10, filter).await;
15661569
}
15671570

0 commit comments

Comments
 (0)