ligo/src/test/test.ml

16 lines
344 B
OCaml
Raw Normal View History

2019-05-13 00:56:22 +04:00
(* -*- compile-command: "cd .. ; dune runtest" -*- *)
let () =
(* Printexc.record_backtrace true ; *)
Alcotest.run "LIGO" [
2019-06-03 14:33:13 +04:00
(* Multifix_tests.main ; *)
2019-05-13 00:56:22 +04:00
Integration_tests.main ;
Compiler_tests.main ;
Transpiler_tests.main ;
Typer_tests.main ;
Heap_tests.main ;
Coase_tests.main ;
Bin_tests.main ;
] ;
()