We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3937df commit 26bec93Copy full SHA for 26bec93
README.md
@@ -0,0 +1,22 @@
1
+### Seed corpus
2
+
3
+The repository contains seed corpus and dictionaries for Lua
4
+fuzzing tests.
5
6
+### Merge corpuses
7
8
+```sh
9
+build/tests/capi/luaL_loadbuffer_proto/luaL_loadbuffer_proto_test -set_cover_merge=1 CORPUS NEW_CORPUS
10
+build/tests/capi/luaL_loadbuffer_proto/luaL_loadbuffer_proto_test -merge=1 CORPUS NEW_CORPUS
11
+```
12
13
+### Maintenance
14
15
+To prevent repository bloat:
16
17
18
+git rev-list --disk-usage --objects --all
19
+git reset --soft HEAD~2000 && git commit -m "Corpus squash"
20
+git prune --progress
21
+git gc
22
0 commit comments