File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -50,21 +50,32 @@ The public corpus links for each target should be accessible here:
50
50
51
51
Check out [ REPRODUCING.md] ( REPRODUCING.md ) for more detailed instructions.
52
52
53
+ ## How do I install the Python tooling?
54
+
55
+ - Create a virtual environment using your favourite method.
56
+ - For example:
57
+ ``` shell
58
+ python3 -m venv .venv
59
+ ```
60
+ - Within that virtual environment, from the root directory of this repository, install the tooling with ` pip install .`
61
+
62
+ Alternatively you can use Poetry to run tools directly, using ` poetry run < tool> ` .
63
+
53
64
# # What's in this testcase?
54
65
55
66
To look at the contents of a testcase, run
56
67
` ` ` shell
57
- poetry run read_corpus < path/to/file>
68
+ read_corpus < path/to/file>
58
69
` ` `
59
70
This will print out a list of contents inside the file.
60
71
61
72
# # I want to generate a new testcase
62
73
63
74
To generate a new testcase, run
64
75
` ` ` shell
65
- poetry run generate_corpus
76
+ generate_corpus
66
77
` ` `
67
- with appropriate options.
78
+ with appropriate options - pass ` --help ` for all options .
68
79
69
80
# I want to enhance the fuzzer!
70
81
You can’t perform that action at this time.
0 commit comments