On 10/2/20 4:35 PM, Alexander Bulekov wrote: > With 1000 runs, there is a non-negligible chance that the fuzzer can > trigger a crash. With this CI job, we care about catching build/runtime > issues in the core fuzzing code. Actual device fuzzing takes place on > oss-fuzz. For these purposes, only running one input should be > sufficient. > > Signed-off-by: Alexander Bulekov <alx...@bu.edu> > Suggested-by: Philippe Mathieu-Daudé <phi...@redhat.com> > --- > .gitlab-ci.yml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml > index a51c89554f..075c15d45c 100644 > --- a/.gitlab-ci.yml > +++ b/.gitlab-ci.yml > @@ -303,7 +303,7 @@ build-oss-fuzz: > | grep -v slirp); do > grep "LLVMFuzzerTestOneInput" ${fuzzer} > /dev/null 2>&1 || continue > ; > echo Testing ${fuzzer} ... ; > - "${fuzzer}" -runs=1000 -seed=1 || exit 1 ; > + "${fuzzer}" -runs=1 -seed=1 || exit 1 ; > done > # Unrelated to fuzzer: run some tests with -fsanitize=address > - cd build-oss-fuzz && make check-qtest-i386 check-unit >
Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com>