catala/compiler/tests.ml
Louis Gesbert d9a17db4c0 Fix running inline tests
Warning: one of them is broken and was disabled
2024-01-18 16:14:27 +01:00

12 lines
300 B
OCaml

let () =
let open Alcotest in
run "Optimizations"
[
( "Iota-reduction",
[
test_case "#1" `Quick Shared_ast.Optimizations.test_iota_reduction_1;
(* test_case "#2" `Quick
Shared_ast.Optimizations.test_iota_reduction_2; FIXME *)
] );
]