ligo/src/test/test.ml

17 lines
343 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 () =
2019-10-28 07:24:21 +04:00
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 ;
Transpiler_tests.main ;
Typer_tests.main ;
Coase_tests.main ;
Vote_tests.main ;
2019-11-21 22:42:15 +04:00
Multisig_tests.main ;
Multisig_v2_tests.main ;
2019-05-13 00:56:22 +04:00
] ;
()