ligo/src/test/test.ml

18 lines
357 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 ;
Heap_tests.main ;
Coase_tests.main ;
Vote_tests.main ;
2019-11-19 18:36:48 +04:00
Multisig_tests.main ;
2019-05-13 00:56:22 +04:00
Bin_tests.main ;
] ;
()