this repo has no description
1opam-version: "2.0"
2maintainer: "stephen.dolan@cl.cam.ac.uk"
3authors: ["Stephen Dolan"]
4homepage: "https://github.com/stedolan/ocaml-afl-persistent"
5bug-reports: "https://github.com/stedolan/ocaml-afl-persistent/issues"
6dev-repo: "git+https://github.com/stedolan/ocaml-afl-persistent.git"
7license: "MIT"
8build: [[ "./build.sh" ]]
9depends: [
10 "ocaml" {>= "4.00"}
11 "ocamlfind"
12 "base-unix"
13]
14conflicts: [
15 "ocaml-option-bytecode-only"
16]
17post-messages: [
18"afl-persistent is installed, but since AFL instrumentation is not available
19with this OCaml compiler, instrumented fuzzing with afl-fuzz won't work.
20
21To use instrumented fuzzing, switch to an OCaml version supporting AFL, such
22as 4.04.0+afl." {success & !afl-available}
23
24"afl-persistent is installed, but since the current OCaml compiler does
25not enable AFL instrumentation by default, most packages will not be
26instrumented and fuzzing with afl-fuzz may not be effective.
27
28To globally enable AFL instrumentation, use an OCaml switch such as
294.04.0+afl." {success & afl-available & !afl-always}
30]
31synopsis: "use afl-fuzz in persistent mode"
32description: """
33afl-fuzz normally works by repeatedly fork()ing the program being
34tested. using this package, you can run afl-fuzz in 'persistent mode',
35which avoids repeated forking and is much faster."""
36url {
37 src: "https://github.com/stedolan/ocaml-afl-persistent/archive/v1.2.tar.gz"
38 checksum: [
39 "sha256=1368b5fe3ca7143fb4d1037d7eb9bf5bf9c91aaee2a6f80f1c9befe81bb32799"
40 "md5=1c26b72e0646402f6f5daac91a70c4cf"
41 ]
42}