#!/bin/bash

set -e

echo "creating test binaries"
make test

echo "Runing tests"
./tests

echo "tests are done"
