ligo/src/test/test.ml

19 lines
364 B
OCaml
Raw Normal View History

2019-05-13 00:56:22 +04:00
(* -*- compile-command: "cd .. ; dune runtest" -*- *)
2019-06-05 10:43:33 +04:00
open Test_helpers
2019-05-13 00:56:22 +04:00
let () =
(* Printexc.record_backtrace true ; *)
2019-06-05 10:43:33 +04:00
run_test @@ test_suite "LIGO" [
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 ;
Vote_tests.main ;
2019-05-13 00:56:22 +04:00
Bin_tests.main ;
] ;
()