ligo/src/test/test.ml

26 lines
575 B
OCaml
Raw Normal View History

2019-05-12 20:56:22 +00:00
(* -*- compile-command: "cd .. ; dune runtest" -*- *)
2019-06-05 06:43:33 +00:00
open Test_helpers
2019-05-12 20:56:22 +00:00
let () =
2019-10-27 23:24:21 -04:00
Printexc.record_backtrace true ;
2019-06-05 06:43:33 +00:00
run_test @@ test_suite "LIGO" [
2019-05-12 20:56:22 +00:00
Integration_tests.main ;
Transpiler_tests.main ;
Typer_tests.main ;
Coase_tests.main ;
Vote_tests.main ;
2020-01-24 22:52:06 +00:00
Id_tests.main ;
Id_tests_p.main ;
Id_tests_r.main ;
2019-11-21 19:42:15 +01:00
Multisig_tests.main ;
Multisig_v2_tests.main ;
2019-12-17 14:18:09 +00:00
Replaceable_id_tests.main ;
2019-12-19 16:10:09 +01:00
Time_lock_tests.main ;
Hash_lock_tests.main ;
Time_lock_repeat_tests.main ;
2020-03-05 00:24:55 -08:00
Pledge_tests.main ;
2020-05-04 15:14:56 +02:00
Tzip12_tests.main ;
2019-05-12 20:56:22 +00:00
] ;
()