#!/bin/bash

cd "$(dirname "$0")"

bash tests.sh
res=$?
if [[ ${res} -ne 0 ]];then
    echo "TEST FAILED"
fi
exit ${res}
