#!/bin/sh

if [ $# -eq 0 ]; then
	echo "You should give a list of test names such as: "
	echo "$0 System.IO.FileTest System.Text.StringBuilderTest"
	echo "or"
	echo "$0 System.AllTests"
	echo "and so on..."
	exit 1
fi

topdir=../../..
NUNITCONSOLE=${topdir}/nunit20/nunit-console.exe

for i in $@; do
	MONO_PATH=${topdir}/nunit20:. \
	mono ${NUNITCONSOLE} /fixture:MonoTests.${i} corlib_test.dll
done

