CCSDS File Delivery Protocol (CCSDS 727.0-B-5) for space file transfer
0
fork

Configure Feed

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

ocaml-cfdp: use test.ml runner convention for the eio test sublib

Match the pattern used by the rest of the monorepo: keep [test_cfdp_eio.ml]
as the suite definition and add a [test.ml] entry point that calls
[Alcotest.run]. The dune stanza becomes [(test (name test) ...)] in line with
the parent [test/dune].

+2 -3
+1 -1
test/eio/dune
··· 1 1 (test 2 - (name test_cfdp_eio) 2 + (name test) 3 3 (libraries cfdp cfdp-eio alcotest fmt))
+1
test/eio/test.ml
··· 1 + let () = Alcotest.run "cfdp_eio" [ Test_cfdp_eio.suite ]
-2
test/eio/test_cfdp_eio.ml
··· 404 404 test_wire_format_length_prefix; 405 405 Alcotest.test_case "wire PDU version" `Quick test_wire_pdu_version; 406 406 ] ) 407 - 408 - let () = Alcotest.run "cfdp_eio" [ suite ]