From da1f8bcc107acb26f6d9b6112f250bfb70d965cd Mon Sep 17 00:00:00 2001 From: Abhishek Arya Date: Thu, 5 Jan 2017 23:41:38 -0800 Subject: [PATCH] Update fuzzer_environment.md --- docs/fuzzer_environment.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/fuzzer_environment.md b/docs/fuzzer_environment.md index 320185249..133365eb4 100644 --- a/docs/fuzzer_environment.md +++ b/docs/fuzzer_environment.md @@ -1,16 +1,16 @@ # Fuzzer environment on ClusterFuzz -Your fuzzers will be run on a [Google Compute Engine](https://cloud.google.com/compute/) VM (Linux) with some security restrictions. +Your fuzz targets will be run on a [Google Compute Engine](https://cloud.google.com/compute/) VM (Linux) with some security restrictions. ## Current working directory You should not make any assumptions about the current working directory of your -fuzzer. If you need to load data files, please use `argv[0]` to get the -directory where your fuzzer executable is located. +fuzz target. If you need to load data files, please use `argv[0]` to get the +directory where your fuzz target executable is located. ## File system -Everything except `/tmp` is read-only, including the directory that your fuzzer +Everything except `/tmp` is read-only, including the directory that your fuzz target executable lives in. Note that `/tmp` is limited in size (64MB). `/dev` is also unavailable.