File: test_option_array_allocation.ml

package info (click to toggle)
janest-base 0.17.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,632 kB
  • sloc: ml: 48,653; ansic: 281; javascript: 126; makefile: 14
file content (11 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
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 ()
;;