2009-04-17 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / tests / Makefile
index 61eb348ea49063390a0efe3b34717cdc59d95c65..c8a7487243641ed5312432085428932273c9a633 100644 (file)
@@ -6,12 +6,12 @@ thisdir = tests
 SUBDIRS =
 include ../build/rules.make
 
-DISTFILES = README.tests
+DISTFILES = README.tests $(wildcard dlls/**/*.cs)
 DISTFILES += $(wildcard *.cs) $(wildcard *.il) $(wildcard *.xml) $(wildcard *.inc) $(wildcard known-issues-*) $(wildcard *.snk)
 
 with_mono_path = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH"
 
-ifeq (default, $(PROFILE))
+ifeq (net_1_1, $(PROFILE))
 # force this, we don't case if CSC is broken. This also
 # means we can use --options, yay.
 MCS = $(with_mono_path) $(INTERNAL_MCS)
@@ -25,10 +25,12 @@ endif
 
 USE_MCS_FLAGS :=
 
-all-local install-local uninstall-local:
+# mention all targets
+all-local $(STD_TARGETS:=-local):
 
+VALID_PROFILE := $(filter net_1_1 net_2_0 net_2_1, $(PROFILE))
+ifdef VALID_PROFILE
 # casts
-
 bootstrap-cast.exe: gen-cast-test.cs
        $(BOOT_COMPILE) -target:exe /out:$@ $<
 
@@ -52,26 +54,50 @@ test-casts: boot-casts.out mcs-casts.out
 
 test-local: casts-boot.exe
 
+eval.exe: eval-tests.cs
+
+ifeq (net_2_1, $(PROFILE))
+COMPILER_NAME = smcs
+TEST_PATTERN = '*test-*.cs'
+LOCAL_RUNTIME_FLAGS = --security=temporary-smcs-hack
+endif
 ifeq (net_2_0, $(PROFILE))
 COMPILER_NAME = gmcs
-COMPILER = $(topdir)/gmcs/gmcs.exe
 TEST_PATTERN = '*test-*.cs'
-else
+LOCAL_RUNTIME_FLAGS = --verify-all
+TOPTIONS += '-il:ver-il-gmcs.xml'
+endif
+ifeq (net_1_1, $(PROFILE))
 COMPILER_NAME = mcs
-COMPILER = $(topdir)/class/lib/$(PROFILE)/mcs.exe
 TEST_PATTERN = 'test-*.cs'
+LOCAL_RUNTIME_FLAGS = --verify-all
 endif
 
+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
+
 TEST_ILS := $(wildcard *-lib.il)
 
-run-test-local: $(TEST_ILS:.il=.dll)
-       MONO_RUNTIME='$(RUNTIME)' $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/compiler-tester.exe positive $(TEST_PATTERN) $(COMPILER) known-issues-$(COMPILER_NAME) $(COMPILER_NAME).log
+ifeq (net_2_0, $(PROFILE))
+eval-test: 
+       $(CSCOMPILE) eval-test.cs -r:$(COMPILER)
+       $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) eval-test.exe
+else
+eval-test:
+endif
+
+check: run-test
+
+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)
 
-# do nothing for this target
-run-test-ondotnet-local:
+# Temporary testing target
+cecil:
+       rm -f *.mdb
+       $(TESTER) -mode:pos -files:'test-*.cs' -compiler:gmcs.exe -issues:known-issues-$(COMPILER_NAME) -log:$(COMPILER_NAME).log -verbose
 
 test-everything:
-       $(MAKE) PROFILE=default run-test
+       $(MAKE) PROFILE=net_1_1 run-test
        $(MAKE) PROFILE=net_2_0 run-test
 
 test-generics:
@@ -79,7 +105,7 @@ test-generics:
 
 clean-local:
        -rm -fr dir-*
-       -rm -f *.exe *.dll *.netmodule *.out *.pdb casts.cs *.log
+       -rm -f *.exe *.dll *.netmodule *.out *.pdb *.mdb casts.cs *.log
        -rm -f xml-*.xml
 
 dist-local: dist-default
@@ -91,10 +117,15 @@ dist-local: dist-default
 %-lib.dll: %-lib.il
        $(ILASM) /dll /out:$@ $<
 
-ifeq (default, $(PROFILE))
+ifeq (net_1_1, $(PROFILE))
 run-test-local: ilasm
 ilasm:
        $(ILASM) /dll property-il.il
        $(CSCOMPILE) /r:property-il.dll property-main.cs /out:property-main.exe
        $(TEST_RUNTIME) property-main.exe
+
+       $(CSCOMPILE) -t:library dlls/test-679-2/test-679-lib-2.cs
+       $(CSCOMPILE) -t:library dlls/test-679-1/test-679-lib.cs -r:dlls/test-679-2/test-679-lib-2.dll
+endif
+
 endif