Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-09-06 23:24:07 +0300
committerGitHub <noreply@github.com>2017-09-06 23:24:07 +0300
commita243301ee4e8c4299497f8f5d041385ffdcbb6ae (patch)
treeac280200e50d4c9571376b461686d2e80ff00dd4 /mcs/class/System.Drawing
parent2f61cd998ff118098b0e633443917bc77e21b3ec (diff)
[WinForms/Drawing] Remove some leftover test scripts (#5518)
They're no longer used.
Diffstat (limited to 'mcs/class/System.Drawing')
-rwxr-xr-xmcs/class/System.Drawing/Test/System.Drawing.Imaging/tests-ms.sh28
-rwxr-xr-xmcs/class/System.Drawing/Test/System.Drawing.Imaging/tests.sh29
-rw-r--r--mcs/class/System.Drawing/Test/System.Drawing/README12
-rwxr-xr-xmcs/class/System.Drawing/Test/System.Drawing/tests-ms.sh28
-rwxr-xr-xmcs/class/System.Drawing/Test/System.Drawing/tests.sh29
5 files changed, 0 insertions, 126 deletions
diff --git a/mcs/class/System.Drawing/Test/System.Drawing.Imaging/tests-ms.sh b/mcs/class/System.Drawing/Test/System.Drawing.Imaging/tests-ms.sh
deleted file mode 100755
index 98b2c00dbe8..00000000000
--- a/mcs/class/System.Drawing/Test/System.Drawing.Imaging/tests-ms.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-if [ $# -eq 0 ]; then
- echo "You should give a list of test names such as: "
- echo "$0 System.Drawing.TestStringFormat"
- echo "or"
- echo "$0 all"
- exit 1
-fi
-
-export MSNet=Yes
-cp ../../System.Drawing_test.dll .
-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 \
- ${NUNITCONSOLE} System.Drawing_test.dll $fixture
-done
-
-
-
diff --git a/mcs/class/System.Drawing/Test/System.Drawing.Imaging/tests.sh b/mcs/class/System.Drawing/Test/System.Drawing.Imaging/tests.sh
deleted file mode 100755
index 511cfcd6ee6..00000000000
--- a/mcs/class/System.Drawing/Test/System.Drawing.Imaging/tests.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-if [ $# -eq 0 ]; then
- echo "You should give a list of test names such as: "
- echo "$0 System.Drawing.TestStringFormat"
- echo "or"
- echo "$0 all"
- exit 1
-fi
-
-cp ../../System.Drawing_test_default.dll .
-
-topdir=../../../..
-NUNITCONSOLE=$topdir/class/lib/default/nunit-console.exe
-MONO_PATH=$topdir/nunit20:$topdir/class/lib/default:.
-
-
-for i in $@; do
- if [ "$i" = "all" ]; then
- fixture=""
- else
- fixture="/fixture:MonoTests.${i}"
- fi
- MONO_PATH=$MONO_PATH \
- mono --debug ${NUNITCONSOLE} System.Drawing_test_default.dll $fixture
-done
-
-
-
diff --git a/mcs/class/System.Drawing/Test/System.Drawing/README b/mcs/class/System.Drawing/Test/System.Drawing/README
deleted file mode 100644
index 957903d11bb..00000000000
--- a/mcs/class/System.Drawing/Test/System.Drawing/README
+++ /dev/null
@@ -1,12 +0,0 @@
-README
-
-* To run the tests using the Mono rutime
-
-cd mcs/class/System.Drawing
-make run-test
-
-* test-ms.sh runs the test using the MS .Net runtime and stores the bimaps
-created by tests in the directory called MsNet.
-
-
-
diff --git a/mcs/class/System.Drawing/Test/System.Drawing/tests-ms.sh b/mcs/class/System.Drawing/Test/System.Drawing/tests-ms.sh
deleted file mode 100755
index 6e17f270393..00000000000
--- a/mcs/class/System.Drawing/Test/System.Drawing/tests-ms.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-if [ $# -eq 0 ]; then
- echo "You should give a list of test names such as: "
- echo "$0 System.Drawing.TestStringFormat"
- echo "or"
- echo "$0 all"
- exit 1
-fi
-
-export MSNet=Yes
-cp ../../System.Drawing_test_default.dll .
-topdir=../../../..
-NUNITCONSOLE=$topdir/class/lib/default/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 \
- ${NUNITCONSOLE} System.Drawing_test_default.dll $fixture
-done
-
-
-
diff --git a/mcs/class/System.Drawing/Test/System.Drawing/tests.sh b/mcs/class/System.Drawing/Test/System.Drawing/tests.sh
deleted file mode 100755
index 511cfcd6ee6..00000000000
--- a/mcs/class/System.Drawing/Test/System.Drawing/tests.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-if [ $# -eq 0 ]; then
- echo "You should give a list of test names such as: "
- echo "$0 System.Drawing.TestStringFormat"
- echo "or"
- echo "$0 all"
- exit 1
-fi
-
-cp ../../System.Drawing_test_default.dll .
-
-topdir=../../../..
-NUNITCONSOLE=$topdir/class/lib/default/nunit-console.exe
-MONO_PATH=$topdir/nunit20:$topdir/class/lib/default:.
-
-
-for i in $@; do
- if [ "$i" = "all" ]; then
- fixture=""
- else
- fixture="/fixture:MonoTests.${i}"
- fi
- MONO_PATH=$MONO_PATH \
- mono --debug ${NUNITCONSOLE} System.Drawing_test_default.dll $fixture
-done
-
-
-