You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the Eio MDX tests were failing with OCaml 5.1 due to extra blank lines appearing in the output. It seems to be related to hidden deprecation warnings. Here's a simple test-case:
```ocaml
module F : sig
val x : unit [@@ocaml.deprecated "Hmm"]
end = struct
let x = ()
end
let x = F.x
```
```ocaml
# print_endline "foo";;
- : unit = ()
```
With OCaml 5.0, this produces:
# print_endline "foo";;
foo
- : unit=()
But with 5.1 we get an extra blank line:
# print_endline "foo";;
foo
- : unit=()
The text was updated successfully, but these errors were encountered:
talex5
added a commit
to talex5/eio
that referenced
this issue
May 25, 2023
Some of the Eio MDX tests were failing with OCaml 5.1 due to extra blank lines appearing in the output. It seems to be related to hidden deprecation warnings. Here's a simple test-case:
With OCaml 5.0, this produces:
But with 5.1 we get an extra blank line:
The text was updated successfully, but these errors were encountered: