#!/bin/sh

set -e

if ! make -C src/tests check ; then
	cat src/tests/testsuite.log
	exit 1
fi
