From 398d33559d146a0626d041d5a1ce905079df7c59 Mon Sep 17 00:00:00 2001 From: hlly1 <hlly1@student.unimelb.edu.au> Date: Fri, 23 Oct 2020 01:59:01 +0800 Subject: [PATCH] generate 1024 instructions --- fuzzer/Fuzzer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzer/Fuzzer.java b/fuzzer/Fuzzer.java index 55658e7..31eb49c 100644 --- a/fuzzer/Fuzzer.java +++ b/fuzzer/Fuzzer.java @@ -14,7 +14,7 @@ public class Fuzzer { public static void main(String[] args) throws IOException { System.out.println(Instruction.getBNF()); - int instructionCount = getRandomInt(0, MAX_INSTRUCTIONS); + int instructionCount = MAX_INSTRUCTIONS; FileOutputStream out = null; PrintWriter pw = null; -- GitLab