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:
authorMarek Safar <marek.safar@gmail.com>2005-03-16 15:16:39 +0300
committerMarek Safar <marek.safar@gmail.com>2005-03-16 15:16:39 +0300
commiteda4bbfd21eab8942e4b45c9362727ced63752c6 (patch)
treeece5968f4a2c480017d42121b8bcf25c84b10b5a /mcs/errors/Makefile
parent20275a22d131be54ef5efcdf449cba78847f45cc (diff)
2005-03-16 Marek Safar <marek.safar@seznam.cz>
* Makefile: Enabled TestRunner for default profile. * know-issues-*: Updated. svn path=/trunk/mcs/; revision=41890
Diffstat (limited to 'mcs/errors/Makefile')
-rw-r--r--mcs/errors/Makefile28
1 files changed, 14 insertions, 14 deletions
diff --git a/mcs/errors/Makefile b/mcs/errors/Makefile
index 15a748b7271..a84160a63b3 100644
--- a/mcs/errors/Makefile
+++ b/mcs/errors/Makefile
@@ -22,7 +22,8 @@ DISTFILES = \
$(wildcard *.response) \
mcs-expect-no-error mcs-expect-wrong-error mcs-ignore-tests \
gmcs-expect-no-error gmcs-expect-wrong-error gmcs-ignore-tests \
- generics-expect-no-error generics-expect-wrong-error
+ generics-expect-no-error generics-expect-wrong-error \
+ TestRunner.exe know-issues-*
all-local: CS0118-2-lib.dll CS0122-10-lib.dll CS0534-3-lib.dll CS0534-4-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 \
@@ -37,24 +38,20 @@ run-test-ondotnet-local:
run-test-local: run-mcs-tests
-TEST_PROFILE=mcs
-
-ifeq (net_2_0, $(PROFILE))
-TEST_PROFILE=gmcs
-run-test-local: run-generics-tests
-endif
-
test-everything:
$(MAKE) PROFILE=default run-test
$(MAKE) PROFILE=net_2_0 run-test
-
-run-mcs-tests:
- -rm -f $(TEST_PROFILE).log
- @./do-tests.pl $(TEST_PROFILE) '$(CSCOMPILE)' "cs*.cs"
-
-run-generics-tests:
+
+run-mcs-tests: TestRunner.exe
+ifeq (net_2_0, $(PROFILE))
-rm -f generics.log
@./do-tests.pl generics '$(GENERICS_COMPILE)' "gcs*.cs"
+
+# Is disabled until we solve problem with running
+# $(RUNTIME) TestRunner.exe "2" $(topdir)/class/lib/$(PROFILE)/gmcs.exe know-issues-gmcs
+else
+ $(RUNTIME) TestRunner.exe "1" $(topdir)/class/lib/$(PROFILE)/mcs.exe know-issues-mcs
+endif
clean-local:
rm -f *.exe *.dll *.log *.mdb dummy.xml *.junk
@@ -68,3 +65,6 @@ install-local uninstall-local:
%-module.dll: %-module.cs
$(BOOTSTRAP_MCS) /target:module /out:$@ $<
+
+TestRunner.exe:
+ $(CSCOMPILE) TestRunner.cs \ No newline at end of file