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 ;
|
2019-06-10 09:58:16 +00:00
|
|
|
Vote_tests.main ;
|
2020-01-24 22:52:06 +00:00
|
|
|
Id_tests.main ;
|
2020-02-27 07:42:58 -08:00
|
|
|
Id_tests_p.main ;
|
2020-02-29 00:12:24 -08:00
|
|
|
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 ;
|
2020-01-24 03:29:00 -08:00
|
|
|
Hash_lock_tests.main ;
|
2020-01-22 23:05:41 -08:00
|
|
|
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
|
|
|
] ;
|
|
|
|
()
|