# # use `run-test' # thisdir = tests SUBDIRS = include ../build/rules.make 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 (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) endif ilasm = $(topdir)/class/lib/net_1_1_bootstrap/ilasm.exe ILASM = MONO_PATH="$(topdir)/class/lib/net_1_1_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(ilasm) ifeq (net_2_0, $(PROFILE)) BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/net_2_0_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/net_2_0_bootstrap/mcs.exe endif USE_MCS_FLAGS := # 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:$@ $< casts.cs: bootstrap-cast.exe $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) $< >$@ casts-mcs.exe: casts.cs $(CSCOMPILE) -target:exe /out:$@ $< casts-boot.exe: casts.cs $(BOOT_COMPILE) -target:exe /out:$@ $< boot-casts.out: casts-boot.exe $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) $< >$@ mcs-casts.out: casts-mcs.exe $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) $< >$@ test-casts: boot-casts.out mcs-casts.out cmp $^ 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 TEST_PATTERN = '*test-*.cs' LOCAL_RUNTIME_FLAGS = --security=validil TOPTIONS += '-il:ver-il-gmcs.xml' endif ifeq (net_1_1, $(PROFILE)) COMPILER_NAME = mcs TEST_PATTERN = 'test-*.cs' LOCAL_RUNTIME_FLAGS = --security=validil 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) ifeq (net_2_0, $(PROFILE)) eval-test: $(CSCOMPILE) eval-test.cs -r:$(COMPILER) MONO_PATH=$(topdir)/class/lib/$(PROFILE):. $(RUNTIME) 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) test-everything: $(MAKE) PROFILE=net_1_1 run-test $(MAKE) PROFILE=net_2_0 run-test test-generics: $(MAKE) PROFILE=net_2_0 run-test clean-local: -rm -fr dir-* -rm -f *.exe *.dll *.netmodule *.out *.pdb *.mdb casts.cs *.log -rm -f xml-*.xml dist-local: dist-default rm -f $(distdir)/casts.cs %-il.dll: %-il.il $(ILASM) /dll $< %-lib.dll: %-lib.il $(ILASM) /dll /out:$@ $< 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