#!/bin/bash

make test

if [ $? -eq 0 ]; then
    echo >&2 "Tests passed."
else
    echo >&2 "Error testing."
    exit 1
fi
