blob: 669a420a4cbfa48ff43a03509f27018d8059880b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/..
printf "******************************************\n"
printf "* Typechecking tests *\n"
printf "******************************************\n\n"
./test/typecheck/run_tests.sh
printf "******************************************\n"
printf "* Ocaml tests *\n"
printf "******************************************\n\n"
./test/ocaml/run_tests.sh
|