Tests, such as [this example](https://github.com/ocaml-multicore/picos/blob/eb7220520d5a51707b2510094b5070a629734c11/lib/picos_io/picos_io.mli#L697-L759), using `Unix.socketpair` occasionally fail on Windows: ```diff --- a/_build/default/lib/picos_io/picos_io.mli +++ b/_build/default/lib/picos_io/.mdx/picos_io.mli.corrected @@ -753,7 +753,5 @@ end send_string "Hello, world!"; send_string "POSIX with OCaml"; end - Hello, world! - POSIX with OCaml - - : unit = () + Exception: Unix.Unix_error(Unix.EADDRINUSE, "socketpair", "") ]} *) ``` Looking at the documentation of [`socketpair`](https://pubs.opengroup.org/onlinepubs/007904975/functions/socketpair.html), the `EADDRINUSE` error is not mentioned.