mte/unikernel/duniverse/base/test/allocation/test_option_array_allocation.ml
2025-11-11 02:07:51 +01:00

11 lines
396 B
OCaml

open! Async
open Expect_test_helpers_async
let%expect_test _ =
(* Sadly, the test is sensitive to cross-library inlining, which we can only detect
using the build info in version_util, which isn't available while compiling a test.
So we delegate the whole test to this executable: *)
let%bind () = run "bin/test_option_array_allocation.exe" [] in
[%expect {| |}];
return ()
;;