upstream: github.com/mirleft/ocaml-tls
0
fork

Configure Feed

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

fix(build): adapt fuzz tests to new Crowbar and API changes

Update Crowbar.run calls to use (name, test_case list) list format,
add ~name label to Sqlite.Table.create and Openamp.Firmware.install,
add run() functions to openamp fuzz modules.

+6 -1
+6 -1
eio/tests/fuzz.ml
··· 319 319 let () = 320 320 Logs.set_level (Some Warning); 321 321 Logs.set_reporter (Logs_fmt.reporter ()); 322 - Crowbar.(add_test ~name:"random ops" [ bytes; bytes; bool; list action ] main) 322 + Crowbar.( 323 + run "tls" 324 + [ 325 + ( "tls", 326 + [ test_case "random ops" [ bytes; bytes; bool; list action ] main ] ); 327 + ])