##// END OF EJS Templates
fuzz: add a quick README to try and document how to test new fuzzers...
Augie Fackler -
r36698:66f2e622 default
parent child Browse files
Show More
@@ -0,0 +1,14 b''
1 How to add fuzzers (partially cribbed from oss-fuzz[0]):
2
3 1) git clone https://github.com/google/oss-fuzz
4 2) cd oss-fuzz
5 3) python infra/helper.py build_image mercurial
6 4) docker run --cap-add=SYS_PTRACE -it -v $HG_REPO_PATH:/hg-new \
7 gcr.io/oss-fuzz/mercurial bash
8 5) cd /src
9 6) rm -r mercurial
10 7) ln -s /hg-new mercurial
11 8) cd mercurial
12 9) compile
13
14 0: https://github.com/google/oss-fuzz/blob/master/docs/new_project_guide.md
General Comments 0
You need to be logged in to leave comments. Login now