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
path: root/mcs
diff options
context:
space:
mode:
authorMartin Willemoes Hansen <mwh@mono-cvs.ximian.com>2003-03-12 17:25:44 +0300
committerMartin Willemoes Hansen <mwh@mono-cvs.ximian.com>2003-03-12 17:25:44 +0300
commit0941f7731ecf0de6cc1dc59713ddb36c6f067d90 (patch)
tree7604daada906d22406f9d53e7872e4c274657fc1 /mcs
parentd17f0f395cb4a32688e4af7fe52849e5e57f4de2 (diff)
* Added makefile.gnu
* Added microsoftvisualbasic_test.args svn path=/trunk/mcs/; revision=12461
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/Microsoft.VisualBasic/Test/makefile.gnu28
-rw-r--r--mcs/class/Microsoft.VisualBasic/Test/microsoftvisualbasic_test.args3
2 files changed, 31 insertions, 0 deletions
diff --git a/mcs/class/Microsoft.VisualBasic/Test/makefile.gnu b/mcs/class/Microsoft.VisualBasic/Test/makefile.gnu
new file mode 100644
index 00000000000..ad99b0023ce
--- /dev/null
+++ b/mcs/class/Microsoft.VisualBasic/Test/makefile.gnu
@@ -0,0 +1,28 @@
+topdir = ../../..
+
+LIBRARY = microsoftvisualbasic_test.dll
+
+LIB_LIST = microsoftvisualbasic_test.args
+LIB_FLAGS = \
+ -r $(topdir)/class/lib/corlib.dll \
+ -r $(topdir)/class/lib/System.dll \
+ -r $(topdir)/class/lib/Microsoft.VisualBasic.dll \
+ -r $(topdir)/nunit20/NUnit.Framework.dll
+
+ifdef SUBDIR
+USE_SOURCE_RULES=1
+SOURCES_INCLUDE=./$(SUBDIR)/*.cs
+SOURCES_EXCLUDE=_DUMMY_
+endif
+
+include $(topdir)/class/library.make
+
+NUNITCONSOLE=$(topdir)/nunit20/nunit-console.exe
+MONO_PATH = $(topdir)/nunit20:.
+
+test: $(LIBRARY) run_test
+
+.PHONY: run_test
+
+run_test:
+ -MONO_PATH=$(MONO_PATH) mono --debug $(NUNITCONSOLE) $(LIBRARY)
diff --git a/mcs/class/Microsoft.VisualBasic/Test/microsoftvisualbasic_test.args b/mcs/class/Microsoft.VisualBasic/Test/microsoftvisualbasic_test.args
new file mode 100644
index 00000000000..e3d4ef173f8
--- /dev/null
+++ b/mcs/class/Microsoft.VisualBasic/Test/microsoftvisualbasic_test.args
@@ -0,0 +1,3 @@
+CollectionTest.cs
+ConversionTest.cs
+DateAndTimeTest.cs \ No newline at end of file