2005-06-06 Marek Safar <marek.safar@seznam.cz>
authorMarek Safar <marek.safar@gmail.com>
Mon, 6 Jun 2005 08:21:34 +0000 (08:21 -0000)
committerMarek Safar <marek.safar@gmail.com>
Mon, 6 Jun 2005 08:21:34 +0000 (08:21 -0000)
* Makefile: Reflect tester changes.

* TestRunner.cs: Moved to tools/compiler-tester.

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

mcs/errors/ChangeLog
mcs/errors/Makefile
mcs/errors/README.tests [deleted file]

index 5494f5c870df46e1c3124bdc2c7d08ec65fa2cab..50b045a318a570f632c04d5a3db3216da5f4ff37 100644 (file)
@@ -1,3 +1,9 @@
+2005-06-06 Marek Safar <marek.safar@seznam.cz>
+
+       * Makefile: Reflect tester changes.
+       
+       * TestRunner.cs: Moved to tools/compiler-tester.
+       
 2005-06-03  Raja R Harinath  <rharinath@novell.com>
 
        * cs0654.cs: New test.
index 3e63ade24387ef0c0afc0d83c777cd04a63517bb..c1d83dd7e62323971b9ef7e19ffe827df9952ffd 100644 (file)
@@ -32,7 +32,7 @@ TEST_SUPPORT_FILES = \
 
 all-local:
 
-test-local: TestRunner-$(PROFILE).exe $(TEST_SUPPORT_FILES)
+test-local: $(TEST_SUPPORT_FILES)
 
 run-test-ondotnet-local:
 
@@ -57,8 +57,8 @@ endif
 
 run-mcs-tests: $(TEST_SUPPORT_FILES)
 
-run-mcs-tests: TestRunner-$(PROFILE).exe
-       $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) TestRunner-$(PROFILE).exe $(COMPILER_NAME) $(COMPILER) known-issues-$(COMPILER_NAME) $(COMPILER_NAME).log
+run-mcs-tests:
+       $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) ../tools/compiler-tester/compiler-tester-$(PROFILE).exe negative $(TEST_PATTERN) $(COMPILER) known-issues-$(COMPILER_NAME) $(COMPILER_NAME).log
 
 clean-local:
        rm -f *.exe *.dll *.log *.mdb dummy.xml *.junk
@@ -72,6 +72,3 @@ install-local uninstall-local:
 
 %-module.dll: %-module.cs
        $(CSCOMPILE) /target:module /out:$@ $<
-
-TestRunner-$(PROFILE).exe: TestRunner.cs
-       $(CSCOMPILE) /out:$@ TestRunner.cs
diff --git a/mcs/errors/README.tests b/mcs/errors/README.tests
deleted file mode 100644 (file)
index 1091452..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-Test cases listed by Category:
-==============================
-
-* Flow Analysis
-
-  error-1.cs error-3.cs
-
-* Type Containers
-
-  error-2.cs
-
-Test cases listed by Number:
-============================
-
-error-1.cs
-----------
-Flow analysis: Check whether mcs correctly reports all errors.
-
-error-2.cs
-----------
-Base types are less accessible than the current type.
-
-error-3.cs
-----------
-Flow analysis: Check struct members.
-
-error-4.cs
-----------
-Ensure that we do not allow void types to be converted to anything else
-
-error-5.cs
-----------
-Catch invalid access to a private event of a class
-
-error-6.cs
-----------
-Catch invalid (multiple) assignments.
-