diff --git a/fuzzer/Fuzzer.java b/fuzzer/Fuzzer.java index 6df465f53bc6d24f54d2942a8c5fa364e66bec1c..fac2b6a750ceaf30b96df6aad4709b2abc917c15 100644 --- a/fuzzer/Fuzzer.java +++ b/fuzzer/Fuzzer.java @@ -9,7 +9,7 @@ import java.util.Random; /* a stub for your team's fuzzer */ public class Fuzzer { - // Blah - 3rd Test + // Blah - Test 1 private static final String OUTPUT_FILE = "fuzz.txt"; @@ -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 = 200; + private static final int INSTRUCTION_MAX = 500; // Maximum variable name length private static final int VAR_NAME_LENGTH_MAX = 100; private static final int VAR_ASCII_MIN = 33;