#!/bin/sh
set -e
# convenience script for running the tests outside adt-run
for f in `run-parts --list tests/tests`; do
	echo ==================================================
	echo $f
	$f
	echo ==================================================
done
echo "ALL PASSED"
