diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2022-10-31 17:46:56 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2022-11-13 17:49:14 +0100 |
| commit | 7ba4d8599e4d96a8c2deb0f5a61cfc75eaeadcd8 (patch) | |
| tree | 40e6c50229af1c4199f030eb0f4fb59d42953ca3 | |
| parent | 4149e87d4bf3ee3648e20929e455594fca75293e (diff) | |
prog: increase max number of syscalls in a program
We currently limit program length to 20.
But the NFC seed sys/linux/test/nfc needs 22 syscalls
just to do basic NFC setup.
Increase the limit to 30.
| -rw-r--r-- | prog/rand.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prog/rand.go b/prog/rand.go index 2b08998c6..8337e7af4 100644 --- a/prog/rand.go +++ b/prog/rand.go @@ -17,7 +17,7 @@ import ( const ( // "Recommended" number of calls in programs that we try to aim at during fuzzing. - RecommendedCalls = 20 + RecommendedCalls = 30 // "Recommended" max number of calls in programs. // If we receive longer programs from hub/corpus we discard them. MaxCalls = 40 |
