Skip to content

Commit

Permalink
fix(runtime-fuzzer): reduce the percentage of unreachable instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
StackOverflowExcept1on committed Oct 11, 2023
1 parent 5b931e2 commit 6f6faa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/runtime-fuzzer/src/gear_calls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ fn config(

let mut params_config = SysCallsParamsConfig::default();
params_config.add_rule(ParamType::Alloc, (10..=20).into());
params_config.add_rule(ParamType::Free, (initial_pages..=initial_pages + 35).into());
params_config.add_rule(ParamType::Free, (initial_pages..=initial_pages + 1).into());

let existing_addresses = NonEmpty::collect(
programs
Expand Down

0 comments on commit 6f6faa8

Please sign in to comment.