From 8c080f6989de441dbe60c27c06e30e9168c6c6cc Mon Sep 17 00:00:00 2001 From: Max Moroz Date: Fri, 12 Jul 2019 09:29:39 -0700 Subject: [PATCH] [docs] Add a note that source code files must not be deleted in build.sh. --- docs/new_project_guide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/new_project_guide.md b/docs/new_project_guide.md index 988816704..b2f0858a5 100644 --- a/docs/new_project_guide.md +++ b/docs/new_project_guide.md @@ -147,6 +147,7 @@ We generate builds for both libFuzzer and AFL fuzzing engine configurations. So, link the fuzzing engine using $LIB_FUZZING_ENGINE, see example below. 2. Please make sure that the binary names for your [fuzz targets](glossary.md#fuzz-target) contain only alphanumeric characters, underscore(_) or dash(-). Otherwise, they won't run on our infrastructure. +3. Please don't remove source code files. They are needed for code coverage. For expat, this looks like [this](https://github.com/google/oss-fuzz/blob/master/projects/expat/build.sh):