test: remove dep

This commit is contained in:
Simon Cruanes 2023-06-19 21:38:54 -04:00
parent 1d23d2d7a1
commit 3676d1e28d
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 5 additions and 2 deletions

View file

@ -2,4 +2,5 @@
(tests
(names t_fib1 t_futs1 t_many)
(enabled_if (>= %{ocaml_version} 5.0))
(libraries moonpool trace tracy-client.trace))
(libraries moonpool trace ;tracy-client.trace
))

View file

@ -18,7 +18,9 @@ let fib ~on x : int Fut.t =
in
Fut.spawn ~on (fun () -> fib_rec x)
(* NOTE: for tracy support
let () = Tracy_client_trace.setup ()
*)
let () = assert (List.init 10 fib_direct = [ 1; 1; 2; 3; 5; 8; 13; 21; 34; 55 ])
let fib_40 : int =