* PEAPI.cs: Clean up indentation. Split into ...
[mono.git] / mcs / class / System.Drawing / Test / System.Drawing / tests.sh
index 3bcf4c685ef0743153cd566023182fe5a8997b95..511cfcd6ee68648eb6f6e6b54d137b49766a2569 100755 (executable)
@@ -8,9 +8,12 @@ if [ $# -eq 0 ]; then
        exit 1
 fi
 
+cp ../../System.Drawing_test_default.dll .
+
 topdir=../../../..
-NUNITCONSOLE=$topdir/class/lib/nunit-console.exe
-MONO_PATH=$topdir/nunit20:$topdir/class/lib:.
+NUNITCONSOLE=$topdir/class/lib/default/nunit-console.exe
+MONO_PATH=$topdir/nunit20:$topdir/class/lib/default:.
+
 
 for i in $@; do
        if [ "$i" = "all" ]; then
@@ -19,7 +22,7 @@ for i in $@; do
                fixture="/fixture:MonoTests.${i}"
        fi
        MONO_PATH=$MONO_PATH \
-               mono --debug ${NUNITCONSOLE} System.Drawing_test.dll $fixture
+               mono --debug ${NUNITCONSOLE} System.Drawing_test_default.dll $fixture
 done