Author: sudha
Date: 2005-04-26 01:48:01 -0400 (Tue, 26 Apr 2005)
New Revision: 43577
Added:
trunk/mcs/mbas/Test/tests/attributes/Makefile
trunk/mcs/mbas/Test/tests/attributes/test-mbas.make
trunk/mcs/mbas/Test/tests/conversions/Makefile
trunk/mcs/mbas/Test/tests/conversions/test-mbas.make
trunk/mcs/mbas/Test/tests/directives/Makefile
trunk/mcs/mbas/Test/tests/directives/test-mbas.make
trunk/mcs/mbas/Test/tests/expressions/Makefile
trunk/mcs/mbas/Test/tests/expressions/test-mbas.make
trunk/mcs/mbas/Test/tests/general/Makefile
trunk/mcs/mbas/Test/tests/general/test-mbas.make
trunk/mcs/mbas/Test/tests/namespace/Makefile
trunk/mcs/mbas/Test/tests/namespace/test-mbas.make
trunk/mcs/mbas/Test/tests/statements/Makefile
trunk/mcs/mbas/Test/tests/statements/test-mbas.make
trunk/mcs/mbas/Test/tests/typemembers/Makefile
trunk/mcs/mbas/Test/tests/typemembers/test-mbas.make
trunk/mcs/mbas/Test/tests/types/Makefile
trunk/mcs/mbas/Test/tests/types/test-mbas.make
Modified:
trunk/mcs/mbas/Test/tests/ChangeLog
trunk/mcs/mbas/Test/tests/test-mbas.make
Log:
Added Makefiles to each sub-directories
Modified: trunk/mcs/mbas/Test/tests/ChangeLog
===================================================================
--- trunk/mcs/mbas/Test/tests/ChangeLog 2005-04-26 04:21:23 UTC (rev 43576)
+++ trunk/mcs/mbas/Test/tests/ChangeLog 2005-04-26 05:48:01 UTC (rev 43577)
@@ -1,3 +1,8 @@
+2005-04-26 Satya Sudha K <[EMAIL PROTECTED]>
+ Sudharsan V <[EMAIL PROTECTED]>
+
+ Added Makefiles to each of the newly added subdirectories.
+
2005-04-05 Ritvik Mayank <[EMAIL PROTECTED]>
* test-mbas.make : Minor change .
Added: trunk/mcs/mbas/Test/tests/attributes/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/attributes/Makefile 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/attributes/Makefile 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/attributes/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/attributes/test-mbas.make 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/attributes/test-mbas.make 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Added: trunk/mcs/mbas/Test/tests/conversions/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/conversions/Makefile 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/conversions/Makefile 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/conversions/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/conversions/test-mbas.make 2005-04-26
04:21:23 UTC (rev 43576)
+++ trunk/mcs/mbas/Test/tests/conversions/test-mbas.make 2005-04-26
05:48:01 UTC (rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Added: trunk/mcs/mbas/Test/tests/directives/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/directives/Makefile 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/directives/Makefile 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/directives/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/directives/test-mbas.make 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/directives/test-mbas.make 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Added: trunk/mcs/mbas/Test/tests/expressions/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/expressions/Makefile 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/expressions/Makefile 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/expressions/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/expressions/test-mbas.make 2005-04-26
04:21:23 UTC (rev 43576)
+++ trunk/mcs/mbas/Test/tests/expressions/test-mbas.make 2005-04-26
05:48:01 UTC (rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Added: trunk/mcs/mbas/Test/tests/general/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/general/Makefile 2005-04-26 04:21:23 UTC (rev
43576)
+++ trunk/mcs/mbas/Test/tests/general/Makefile 2005-04-26 05:48:01 UTC (rev
43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/general/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/general/test-mbas.make 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/general/test-mbas.make 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Added: trunk/mcs/mbas/Test/tests/namespace/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/namespace/Makefile 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/namespace/Makefile 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/namespace/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/namespace/test-mbas.make 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/namespace/test-mbas.make 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Added: trunk/mcs/mbas/Test/tests/statements/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/statements/Makefile 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/statements/Makefile 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/statements/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/statements/test-mbas.make 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/statements/test-mbas.make 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Modified: trunk/mcs/mbas/Test/tests/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/test-mbas.make 2005-04-26 04:21:23 UTC (rev
43576)
+++ trunk/mcs/mbas/Test/tests/test-mbas.make 2005-04-26 05:48:01 UTC (rev
43577)
@@ -3,7 +3,7 @@
endif
ifndef PATTERN
-PATTERN = ./*/*.vb
+PATTERN = *.vb
endif
COMPILER_FLAGS = /libpath:../../../../class/lib/default /imports:System
@@ -12,14 +12,14 @@
run-test-local:
$(MAKE) clean-local
- ./test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+ ./test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='./*/$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
run-test-ondotnet-local:
$(MAKE) clean-local
- ./test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+ ./test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='./*/$(PATTERN)' --runtime=
clean-local:
- rm -f *.exe *.log *.results
+ rm -f ./*/*.exe ./*/*.log ./*/*.results *.log
all-local test-local install-local uninstall-local:
@:
Added: trunk/mcs/mbas/Test/tests/typemembers/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/typemembers/Makefile 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/typemembers/Makefile 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/typemembers/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/typemembers/test-mbas.make 2005-04-26
04:21:23 UTC (rev 43576)
+++ trunk/mcs/mbas/Test/tests/typemembers/test-mbas.make 2005-04-26
05:48:01 UTC (rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
Added: trunk/mcs/mbas/Test/tests/types/Makefile
===================================================================
--- trunk/mcs/mbas/Test/tests/types/Makefile 2005-04-26 04:21:23 UTC (rev
43576)
+++ trunk/mcs/mbas/Test/tests/types/Makefile 2005-04-26 05:48:01 UTC (rev
43577)
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
Added: trunk/mcs/mbas/Test/tests/types/test-mbas.make
===================================================================
--- trunk/mcs/mbas/Test/tests/types/test-mbas.make 2005-04-26 04:21:23 UTC
(rev 43576)
+++ trunk/mcs/mbas/Test/tests/types/test-mbas.make 2005-04-26 05:48:01 UTC
(rev 43577)
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make)
$(widlcard *.pl)
+
+run-test-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)'
--runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+ $(MAKE) clean-local
+ ../test-mbas.pl --compiler='$(COMPILER)'
--compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+ rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+ @:
+
+dist-local: dist-default
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches