Skip to content
Snippets Groups Projects
Commit b45a5610 authored by Ewen Smith's avatar Ewen Smith
Browse files

Zero stack full

parent 78a1499b
No related branches found
No related tags found
No related merge requests found
Pipeline #58261 passed
......@@ -14,7 +14,7 @@ public class Fuzzer {
private static final String OUTPUT_FILE = "fuzz.txt";
// The percentage of outputs that will start with a full stack
private static final int STACK_FULL_PERCENTAGE = 10;
private static final int STACK_FULL_PERCENTAGE = 0;
// The percentage of inputs that will be incorrect
private static final int INPUT_ERROR_PERCENTAGE = 5;
// The percentage of instructions that will be incorrect
......@@ -23,7 +23,7 @@ public class Fuzzer {
private static final int NUMBER_TO_GENERATE = 10;
// Instruction number range for each input
private static final int INSTRUCTION_MIN = 0;
private static final int INSTRUCTION_MAX = 500;
private static final int INSTRUCTION_MAX = 200;
// Maximum variable name length
private static final int VAR_NAME_LENGTH_MAX = 100;
private static final int VAR_ASCII_MIN = 33;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment