Punycode (RFC3492) in OCaml
at main 15 lines 392 B view raw
1; Crowbar fuzz testing for punycode 2; 3; To run: dune exec ocaml-punycode/fuzz/fuzz_punycode.exe 4; With AFL: afl-fuzz -i fuzz/corpus -o fuzz/findings -- ./_build/default/ocaml-punycode/fuzz/fuzz_punycode.exe @@ 5 6(executable 7 (name fuzz_punycode) 8 (modules fuzz_punycode) 9 (libraries punycode crowbar)) 10 11(rule 12 (alias fuzz) 13 (deps fuzz_punycode.exe) 14 (action 15 (run %{exe:fuzz_punycode.exe})))