ligo/src/test/test.ml

22 lines
483 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 ;
2020-01-25 02:52:06 +04:00
Id_tests.main ;
2019-11-21 22:42:15 +04:00
Multisig_tests.main ;
Multisig_v2_tests.main ;
2019-12-17 18:18:09 +04:00
Replaceable_id_tests.main ;
2019-12-19 19:10:09 +04:00
Time_lock_tests.main ;
Hash_lock_tests.main ;
Time_lock_repeat_tests.main ;
2019-05-13 00:56:22 +04:00
] ;
()