From e17c458802d614be57422a57598993c5fdce3528 Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Mon, 6 Jun 2005 08:21:34 +0000 Subject: [PATCH] 2005-06-06 Marek Safar * Makefile: Reflect tester changes. * TestRunner.cs: Moved to tools/compiler-tester. svn path=/trunk/mcs/; revision=45471 --- mcs/errors/ChangeLog | 6 ++++++ mcs/errors/Makefile | 9 +++------ mcs/errors/README.tests | 38 -------------------------------------- 3 files changed, 9 insertions(+), 44 deletions(-) delete mode 100644 mcs/errors/README.tests diff --git a/mcs/errors/ChangeLog b/mcs/errors/ChangeLog index 5494f5c870d..50b045a318a 100644 --- a/mcs/errors/ChangeLog +++ b/mcs/errors/ChangeLog @@ -1,3 +1,9 @@ +2005-06-06 Marek Safar + + * Makefile: Reflect tester changes. + + * TestRunner.cs: Moved to tools/compiler-tester. + 2005-06-03 Raja R Harinath * cs0654.cs: New test. diff --git a/mcs/errors/Makefile b/mcs/errors/Makefile index 3e63ade2438..c1d83dd7e62 100644 --- a/mcs/errors/Makefile +++ b/mcs/errors/Makefile @@ -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 index 1091452de78..00000000000 --- a/mcs/errors/README.tests +++ /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. - -- 2.25.1