Skip to content

Commit 26bec93

Browse files
committed
readme: initial version
1 parent b3937df commit 26bec93

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
```sh
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

Comments
 (0)