summaryrefslogtreecommitdiff
path: root/src/test/run_tests.ml
blob: f1956b1ee01082c6e02cf8af2781265126f379b3 (plain)
1
2
3
4
5
6
7
8
9
let tests = [
  "test1", Test1.defs;
  "test2", Test2.defs;
  "test3", Test3.defs;
] ;;

let run_all () = List.iter Run_interp.run tests ;;

run_all () ;;