From 7c0bba368cff87cdb46c495258bc3b3d255e2193 Mon Sep 17 00:00:00 2001 From: Abhishek Arya Date: Tue, 7 Feb 2017 09:35:26 -0800 Subject: [PATCH] Update new_project_guide.md --- docs/new_project_guide.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/new_project_guide.md b/docs/new_project_guide.md index 284da54ca..d2acf9dd3 100644 --- a/docs/new_project_guide.md +++ b/docs/new_project_guide.md @@ -58,11 +58,6 @@ COPY build.sh fuzzer.cc $SRC/ # copy build script and other fuzzer f ``` Expat example: [expat/Dockerfile](../projects/expat/Dockerfile) -### Fuzzer execution environment - -[This page](fuzzer_environment.md) gives information about the environment that -your [fuzz targets](glossary.md#fuzz-target) will run on ClusterFuzz, and the assumptions that you can make. - ## build.sh This file describes how to build [fuzz targets](glossary.md#fuzz-target) for your project. @@ -130,6 +125,10 @@ pass them manually to the build tool. See [Provided Environment Variables](../infra/base-images/base-builder/README.md#provided-environment-variables) section in `base-builder` image documentation for more details. +## Fuzzer execution environment + +[This page](fuzzer_environment.md) gives information about the environment that +your [fuzz targets](glossary.md#fuzz-target) will run on ClusterFuzz, and the assumptions that you can make. ## Testing locally