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(lint): E718 add fuzz.ml runners for tcpcl, tls, tm, tomlt

+7 -8
+6 -6
fuzz/dune
··· 1 1 (executable 2 - (name fuzz_tm) 3 - (modules fuzz_tm) 2 + (name fuzz) 3 + (modules fuzz fuzz_tm) 4 4 (libraries tm crowbar)) 5 5 6 6 (executable ··· 12 12 (alias runtest) 13 13 (enabled_if 14 14 (<> %{profile} afl)) 15 - (deps fuzz_tm.exe) 15 + (deps fuzz.exe) 16 16 (action 17 - (run %{exe:fuzz_tm.exe}))) 17 + (run %{exe:fuzz.exe}))) 18 18 19 19 (rule 20 20 (alias fuzz) ··· 22 22 (= %{profile} afl)) 23 23 (deps 24 24 (source_tree corpus) 25 - fuzz_tm.exe 25 + fuzz.exe 26 26 gen_corpus.exe) 27 27 (action 28 - (echo "AFL fuzzer built: %{exe:fuzz_tm.exe}\n"))) 28 + (echo "AFL fuzzer built: %{exe:fuzz.exe}\n")))
+1
fuzz/fuzz.ml
··· 1 + let () = Crowbar.run "tm" [ Fuzz_tm.suite ]
-2
fuzz/fuzz_tm.ml
··· 137 137 test_case "frame roundtrip" [ bytes ] test_frame_roundtrip; 138 138 test_case "fecf corruption" [ bytes; range 20000 ] test_fecf_corruption; 139 139 ] ) 140 - 141 - let () = run "tm" [ suite ]