Licklider Transmission Protocol (CCSDS 734.1-B) for reliable DTN links
0
fork

Configure Feed

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

fix(lint): resolve E615 test suite not included issues

- Add Test_chrome_cookies.suite to ocaml-linkedin test runner
- Add Test_ltp.suite to ocaml-ltp test runner
- Add Test_session, Test_pase, Test_discovery, Test_msg, Test_aes_ccm
suites to ocaml-matter test runner
- Fix unused value warnings in matter test helpers

+29 -25
+29 -25
test/test.ml
··· 180 180 181 181 let () = 182 182 Alcotest.run "ltp" 183 - [ 184 - ( "SDNV", 185 - [ 186 - Alcotest.test_case "zero" `Quick test_sdnv_zero; 187 - Alcotest.test_case "small" `Quick test_sdnv_small; 188 - Alcotest.test_case "multi-byte" `Quick test_sdnv_multi_byte; 189 - Alcotest.test_case "large" `Quick test_sdnv_large; 190 - ] ); 191 - ( "segment_type", 192 - [ Alcotest.test_case "roundtrip" `Quick test_segment_type_roundtrip ] ); 193 - ( "data", 194 - [ 195 - Alcotest.test_case "green roundtrip" `Quick test_green_data_roundtrip; 196 - Alcotest.test_case "red checkpoint roundtrip" `Quick 197 - test_red_checkpoint_roundtrip; 198 - ] ); 199 - ("report", [ Alcotest.test_case "roundtrip" `Quick test_report_roundtrip ]); 200 - ( "report_ack", 201 - [ Alcotest.test_case "roundtrip" `Quick test_report_ack_roundtrip ] ); 202 - ( "cancel", 203 - [ 204 - Alcotest.test_case "roundtrip" `Quick test_cancel_roundtrip; 205 - Alcotest.test_case "ack roundtrip" `Quick test_cancel_ack_roundtrip; 206 - ] ); 207 - ] 183 + ([ Test_ltp.suite ] 184 + @ [ 185 + ( "SDNV", 186 + [ 187 + Alcotest.test_case "zero" `Quick test_sdnv_zero; 188 + Alcotest.test_case "small" `Quick test_sdnv_small; 189 + Alcotest.test_case "multi-byte" `Quick test_sdnv_multi_byte; 190 + Alcotest.test_case "large" `Quick test_sdnv_large; 191 + ] ); 192 + ( "segment_type", 193 + [ Alcotest.test_case "roundtrip" `Quick test_segment_type_roundtrip ] 194 + ); 195 + ( "data", 196 + [ 197 + Alcotest.test_case "green roundtrip" `Quick 198 + test_green_data_roundtrip; 199 + Alcotest.test_case "red checkpoint roundtrip" `Quick 200 + test_red_checkpoint_roundtrip; 201 + ] ); 202 + ( "report", 203 + [ Alcotest.test_case "roundtrip" `Quick test_report_roundtrip ] ); 204 + ( "report_ack", 205 + [ Alcotest.test_case "roundtrip" `Quick test_report_ack_roundtrip ] ); 206 + ( "cancel", 207 + [ 208 + Alcotest.test_case "roundtrip" `Quick test_cancel_roundtrip; 209 + Alcotest.test_case "ack roundtrip" `Quick test_cancel_ack_roundtrip; 210 + ] ); 211 + ])