AX.25 Amateur Radio Link-Layer Protocol
0
fork

Configure Feed

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

fix(lint): resolve E205, E331, E405, E415, E600, E605, E715, E718, E725

Standardize fuzz and test conventions across 30+ packages:

- E715/E718: Add fuzz.ml runners referencing Fuzz_*.suite instead of
calling Fuzz_*.run() directly; update dune files accordingly
- E725: Fix fuzz_paseto suite name from "crowbar" to "paseto"
- E600: Create .mli interfaces for test modules (test_firmware,
test_remoteproc, test_pbkdf2, test_paseto) with single-group suites
- E605: Add missing test files (test_skills, test_monitor, test_openamp,
test_xrpc_server) with proper module extraction from inline test.ml
- E415: Add pp pretty-printer to xrpc_server type t
- E405: Add doc comment for pp_sync_action in skills.mli
- E205: Replace Printf with Fmt in fuzz_paseto and gen_corpus
- E331: Rename make_key to key in fuzz_paseto

+8 -7
+6 -6
fuzz/dune
··· 4 4 ; With AFL: crow start --cpus=4 5 5 6 6 (executable 7 - (name fuzz_ax25) 8 - (modules fuzz_ax25) 7 + (name fuzz) 8 + (modules fuzz fuzz_ax25) 9 9 (libraries ax25 crowbar)) 10 10 11 11 (executable ··· 17 17 (alias runtest) 18 18 (enabled_if (<> %{profile} afl)) 19 19 (deps 20 - fuzz_ax25.exe 20 + fuzz.exe 21 21 (source_tree corpus)) 22 22 (action 23 - (run %{exe:fuzz_ax25.exe}))) 23 + (run %{exe:fuzz.exe}))) 24 24 25 25 (rule 26 26 (alias fuzz) ··· 28 28 (= %{profile} afl)) 29 29 (deps 30 30 (source_tree corpus) 31 - fuzz_ax25.exe 31 + fuzz.exe 32 32 gen_corpus.exe) 33 33 (action 34 - (echo "AFL fuzzer built: %{exe:fuzz_ax25.exe}\n"))) 34 + (echo "AFL fuzzer built: %{exe:fuzz.exe}\n")))
+1
fuzz/fuzz.ml
··· 1 + let () = Crowbar.run "ax25" [ Fuzz_ax25.suite ]
+1 -1
fuzz/fuzz_ax25.ml
··· 156 156 test_case "PID byte roundtrip" [ pid_gen ] test_pid_roundtrip; 157 157 ] ) 158 158 159 - let () = run "ax25" [ suite ] 159 + let run () = Crowbar.run "ax25" [ suite ]