#!/bin/bash

set -e

echo "creating test binaries"
make test

echo "Runing test"
./test

echo "test done"
