File: dune

package info (click to toggle)
ocaml-cohttp 5.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,088 kB
  • sloc: ml: 7,793; javascript: 15; makefile: 12
file content (26 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(executable
 (name fuzz_header)
 (libraries crowbar cohttp))

(rule
 (alias runtest)
 (package cohttp)
 (action
  (run ./fuzz_header.exe)))

(rule
 (alias fuzz)
 (deps
  (:exe fuzz_header.exe)
  (source_tree inputs))
 (action
  (run afl-fuzz -i inputs -o findings -- ./%{exe} @@)))

(rule
 (alias bun-fuzz)
 (locks %{project_root}/bun)
 (deps
  (:exe fuzz_me.exe)
  (source_tree input))
 (action
  (run bun --input inputs --output findings -- ./%{exe})))