ligo/test/test.ml
2019-09-08 12:17:24 +02:00

19 lines
364 B
OCaml

(* -*- compile-command: "cd .. ; dune runtest" -*- *)
open Test_helpers
let () =
(* Printexc.record_backtrace true ; *)
run_test @@ test_suite "LIGO" [
Integration_tests.main ;
Compiler_tests.main ;
Transpiler_tests.main ;
Typer_tests.main ;
Heap_tests.main ;
Coase_tests.main ;
Vote_tests.main ;
Bin_tests.main ;
] ;
()