CCSDS TM Transfer Frames (CCSDS 132.0-B-3)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(fuzz): add gen_corpus and runtest rules to remaining fuzz directories (E718, E724)

+16 -6
+16 -6
fuzz/dune
··· 1 - ; Crowbar fuzz testing for TM frames 2 - ; 3 - ; To run: dune exec fuzz/fuzz_tm.exe 4 - ; With AFL: afl-fuzz -i fuzz/corpus -o fuzz/findings -- ./_build/default/fuzz/fuzz_tm.exe @@ 5 - 6 1 (executable 7 2 (name fuzz_tm) 8 3 (modules fuzz_tm) 9 4 (libraries tm crowbar)) 10 5 6 + (executable 7 + (name gen_corpus) 8 + (modules gen_corpus)) 9 + 11 10 (rule 12 - (alias fuzz) 11 + (alias runtest) 13 12 (deps fuzz_tm.exe) 14 13 (action 15 14 (run %{exe:fuzz_tm.exe}))) 15 + 16 + (rule 17 + (alias fuzz) 18 + (enabled_if 19 + (= %{profile} afl)) 20 + (deps 21 + (source_tree corpus) 22 + fuzz_tm.exe 23 + gen_corpus.exe) 24 + (action 25 + (echo "AFL fuzzer built: %{exe:fuzz_tm.exe}\n")))