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