Reduce input size limit in execute fuzzer

We only have 4 Zend test cases > 8k. Large inputs tend to just
make things slower.
This commit is contained in:
Nikita Popov 2020-09-07 22:57:09 +02:00
parent 4a2ae84188
commit af0ba0b2d3
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#include "fuzzer-sapi.h"
#define MAX_STEPS 1000
#define MAX_SIZE (16 * 1024)
#define MAX_SIZE (8 * 1024)
static uint32_t steps_left;
/* Because the fuzzer is always compiled with clang,

View File

@ -13,7 +13,7 @@ if ($argc >= 3) {
if ($argc >= 4) {
$maxLen = (int) $argv[3];
} else {
$maxLen = 16 * 1024;
$maxLen = 8 * 1024;
}
$it = new RecursiveIteratorIterator(