From 40355996cfcea92230e538267cdbebe10e69ab57 Mon Sep 17 00:00:00 2001
From: Ewen Smith <ewens@student.unimelb.edu.au>
Date: Thu, 22 Oct 2020 15:29:12 +1100
Subject: [PATCH] Added persistent storage between runs to control stack full
runs - Returned to 1000 instructions
---
fuzzer/Fuzzer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fuzzer/Fuzzer.java b/fuzzer/Fuzzer.java
index 6f31093..c84fee2 100644
--- a/fuzzer/Fuzzer.java
+++ b/fuzzer/Fuzzer.java
@@ -24,7 +24,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 = 1000;
// Maximum variable name length
private static final int VAR_NAME_LENGTH_MAX = 100;
private static final int VAR_ASCII_MIN = 33;
--
GitLab