TCP/TLS connection pooling for Eio
0
fork

Configure Feed

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

fix(tests): normalize suite names to lowercase snake_case (E617)

All test suite names now follow the convention: lowercase snake_case
matching the test filename. Changes:
- crowbar examples: 'crowbar' → filename (calendar/fpath/map/pprint/uunf)
- irmin: uppercase suites → lowercase
- memtrace: uppercase/mismatched → lowercase matching filename
- monopam/ocaml-agent/ocaml-aos/ocaml-conpool/ocaml-cookeio/ocaml-crow:
uppercase → lowercase
- ocaml-crypto: 'cipher' → 'crypto'
- ocaml-github-oauth: 'github-oauth' → 'github_oauth'
- ocaml-jsonwt/ocaml-linkedin/ocaml-merlin: mismatch fixed
- ocaml-oci: rename test_OS.ml/.mli → test_os.ml/.mli, suite 'OS' → 'os'
- ocaml-precommit: 'hooks' → 'precommit'
- ocaml-sexpt: 'dune_codec' → 'dune'
- ocaml-slack: 'md' → 'markdown'
- ocaml-sle: 'FCLTU' → 'fcltu'
- ocaml-space-packet: 'space-packet' → 'space_packet'
- ocaml-tls: 'tls-eio'/'tls-unix' → snake_case
- ocaml-tomlt: 'tomlt-*' → snake_case

+4 -4
+1 -1
test/test_config.ml
··· 32 32 Alcotest.(check bool) "non-empty" true (String.length s > 0) 33 33 34 34 let suite = 35 - ( "Config", 35 + ( "config", 36 36 [ 37 37 Alcotest.test_case "default" `Quick test_default; 38 38 Alcotest.test_case "v" `Quick test_v;
+1 -1
test/test_conpool.ml
··· 11 11 () 12 12 13 13 let suite = 14 - ( "Conpool", 14 + ( "conpool", 15 15 [ Alcotest.test_case "default_protocol" `Quick test_default_protocol ] )
+1 -1
test/test_endpoint.ml
··· 21 21 Alcotest.(check bool) "contains host" true (String.length s > 0) 22 22 23 23 let suite = 24 - ( "Endpoint", 24 + ( "endpoint", 25 25 [ 26 26 Alcotest.test_case "v" `Quick test_v; 27 27 Alcotest.test_case "equal" `Quick test_equal;
+1 -1
test/test_stats.ml
··· 24 24 Alcotest.(check bool) "non-empty" true (String.length str > 0) 25 25 26 26 let suite = 27 - ( "Stats", 27 + ( "stats", 28 28 [ 29 29 Alcotest.test_case "v" `Quick test_v; 30 30 Alcotest.test_case "pp" `Quick test_pp;