| 123456789101112131415161718192021222324252627 |
- #!/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 "or"
- echo "$0 all"
- echo "and so on..."
- exit 1
- fi
- topdir=../../..
- NUNITCONSOLE=$topdir/class/lib/nunit-console.exe
- MONO_PATH=$topdir/nunit20:$topdir/class/lib:.
- for i in $@; do
- if [ "$i" = "all" ]; then
- fixture=""
- else
- fixture="/fixture:MonoTests.${i}"
- fi
- MONO_PATH=$MONO_PATH \
- mono --debug ${NUNITCONSOLE} System.Data.ObjectSpaces_test.dll $fixture
- done
|