summaryrefslogtreecommitdiff
path: root/test/run_tests.sh
blob: b31a05ffe6a7075fc8abc8357ed2386155f2a9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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

printf "******************************************\n"
printf "* ARM spec tests                         *\n"
printf "******************************************\n\n"

./test/arm/run_tests.sh