New test.
[mono.git] / mcs / class / corlib / Test / ms_run_test.sh
1 #!/bin/sh
2
3 if [ $# -eq 0 ]; then
4         echo "You should give a list of test names such as: "
5         echo "$0 System.IO.FileTest System.Text.StringBuilderTest"
6         echo "or"
7         echo "$0 System.AllTests"
8         echo "and so on..."
9         exit 1
10 fi
11
12 topdir=../../..
13 NUNITCONSOLE=$topdir/nunit20/nunit-console.exe
14 MONO_PATH=$topdir/nunit20:.
15
16 for i in $@; do
17         MONO_PATH=$MONO_PATH \
18                 ${NUNITCONSOLE} corlib_reference.dll /fixture:MonoTests.${i}
19 done
20