adjust property generation to not panic by always having some property to select from

This commit is contained in:
pedrocarlo
2025-09-22 14:33:58 -03:00
parent 7d1f23dd3a
commit 2cd7c68c35
2 changed files with 100 additions and 101 deletions

View File

@@ -320,6 +320,10 @@ impl SimulatorEnv {
if let Some(min_tick) = cli_opts.min_tick {
profile.io.latency.min_tick = min_tick;
}
if cli_opts.differential {
// Disable faults when running against sqlite as we cannot control faults on it
profile.io.enable = false;
}
profile.validate().unwrap();