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
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2005-01-11 16:11:53 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-01-11 16:11:53 +0300
commit1dbb4dfb6a6d1661dda7a75cb3016074d8440dda (patch)
tree7b973e1076c39d02eefb9124b7b405a1a1b55c76 /mcs/errors/Makefile
parentae3d99bce30108c202c144a4523ae5c4951cf563 (diff)
parentf30c880b86ce6abd9022f93d33cd4b9e552a2965 (diff)
* Makefile (all-local): Add CS0118-2-lib.dll.
(run-mcs-tests, runt-generics-tests): Don't pipe through tee. It loses exit code of do-tests.pl. * do-tests.pl (PROFILELOG): New. Copy all output to this file too. * cs0234-2.cs: Bug #52697. * cs0234-3.cs: Bug #57200. * cs0118-2.cs, CS0118-2-lib.cs: Bug #67520. * cs0538-2.cs: Remove bogus test. svn path=/trunk/mcs/; revision=38687
Diffstat (limited to 'mcs/errors/Makefile')
-rw-r--r--mcs/errors/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/mcs/errors/Makefile b/mcs/errors/Makefile
index 18d68cc1a92..c7e7d8b5970 100644
--- a/mcs/errors/Makefile
+++ b/mcs/errors/Makefile
@@ -26,7 +26,7 @@ DISTFILES = \
generics-expect-no-error generics-expect-wrong-error
#all-local: run-test-local test-multi-local
-all-local: CS0571-3-lib.dll CS0612-2-lib.dll CS0618-2-lib.dll \
+all-local: CS0118-2-lib.dll CS0571-3-lib.dll CS0612-2-lib.dll CS0618-2-lib.dll \
CS0619-8-lib.dll CS0619-17-lib.dll CS0619-32-lib.dll CS0619-33-lib.dll CS0619-36-lib.dll \
CS3005-16-lib.dll CS3013-module.dll
@@ -52,11 +52,12 @@ test-everything:
run-mcs-tests:
-rm -f $(TEST_PROFILE).log
- @./do-tests.pl $(TEST_PROFILE) "$(CSCOMPILE)" "cs*.cs" 2>&1 | tee $(TEST_PROFILE).log
+ @./do-tests.pl $(TEST_PROFILE) "$(CSCOMPILE)" "cs*.cs"
run-generics-tests:
-rm -f generics.log
- @./do-tests.pl generics "$(GENERICS_COMPILE)" "gcs*.cs" 2>&1 | tee generics.log
+ @./do-tests.pl generics "$(GENERICS_COMPILE)" "gcs*.cs"
+ @test -z "`grep UNEXPECTED generics.log`"
test-multi-local:
@ failed=false; \