Improve profile test coverage
authorRaja R Harinath <harinath@hurrynot.org>
Tue, 16 Jun 2009 17:08:30 +0000 (17:08 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Tue, 16 Jun 2009 17:08:30 +0000 (17:08 -0000)
* errors/Makefile (test-local): Empty out.
(run-test-local): Remove $(TEST_SUPPORT_FILES).
* tests/Makefile (test-local): Empty out.

svn path=/trunk/mcs/; revision=136231

mcs/errors/ChangeLog
mcs/errors/Makefile
mcs/tests/ChangeLog
mcs/tests/Makefile

index 9776ec7e3fb4c71f62c3b347f6ed9a64d0db3999..04571785ad826c80c972c129822c4a1b0975ac42 100644 (file)
@@ -1,3 +1,9 @@
+2009-06-16  Raja R Harinath  <harinath@hurrynot.org>
+
+       Improve profile test coverage
+       * Makefile (test-local): Empty out.
+       (run-test-local): Remove $(TEST_SUPPORT_FILES).
+
 2009-02-06  Scott Peterson  <lunchtimemama@gmail.com>
 
        This patch is contributed under the MIT/X11 license.
index c539c9a36c1c4221381391aba139073d6133edf6..2ae411e5e4d3d85e2c58778e1e8826c418986262 100644 (file)
@@ -48,13 +48,14 @@ all-local $(STD_TARGETS:=-local):
 VALID_PROFILE := $(filter net_1_1 net_2_0 net_2_1, $(PROFILE))
 ifdef VALID_PROFILE
 
-test-local: $(TEST_SUPPORT_FILES)
-
 check: run-test-local
 
 # again, run-test is when the tests actually happen, so
 # don't compile on make test.
 
+test-local:
+       @:
+
 run-test-local: run-mcs-tests 
 
 test-everything:
@@ -79,10 +80,9 @@ COMPILER = $(topdir)/class/lib/$(PROFILE)/$(COMPILER_NAME).exe
 TESTER = MONO_RUNTIME='$(RUNTIME)' $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(LOCAL_RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/compiler-tester.exe
 
 run-mcs-tests: $(TEST_SUPPORT_FILES)
-
-run-mcs-tests:
        rm -f *.exe *.mdb
        $(TESTER) -mode:neg -files:$(TEST_PATTERN) -compiler:$(COMPILER) -issues:known-issues-$(COMPILER_NAME) -log:$(COMPILER_NAME).log $(TESTER_OPTIONS)
+       -rm -f $(TEST_SUPPORT_FILES)
 
 cecil:
        $(TESTER) -mode:neg -files:$(TEST_PATTERN) -compiler:../tests/gmcs.exe -issues:known-issues-$(COMPILER_NAME) -log:$(COMPILER_NAME).log $(TESTER_OPTIONS) -verbose
index 3647c83dca1a36220c45cb0004735176341f47cb..4eb4dd3ba4bbfb561751ae70c6a317b390dfabcd 100644 (file)
@@ -1,3 +1,7 @@
+2009-06-16  Raja R Harinath  <harinath@hurrynot.org>
+
+       * Makefile (test-local): Empty out.
+
 2009-06-12  Jb Evain  <jbevain@novell.com>
 
        * gtest-449.cs
index 37973b672f3b22de5a1e94919913d01d4dece342..84c040e2228001ad47898ed30cc1a79f5446391b 100644 (file)
@@ -51,8 +51,7 @@ mcs-casts.out: casts-mcs.exe
 
 test-casts: boot-casts.out mcs-casts.out
        cmp $^
-
-test-local: casts-boot.exe
+       -rm -f bootstrap-cast.exe casts.cs casts-boot.exe casts-mcs.exe boot-casts.out mcs-casts.out
 
 eval.exe: eval-tests.cs
 
@@ -88,6 +87,9 @@ endif
 
 check: run-test
 
+test-local:
+       @:
+
 run-test-local: $(TEST_ILS:.il=.dll) eval-test
        $(TESTER) -mode:pos -files:$(TEST_PATTERN) -compiler:$(COMPILER) -issues:known-issues-$(COMPILER_NAME) -log:$(COMPILER_NAME).log $(TOPTIONS)