2008-03-25 Zoltan Varga <vargaz@gmail.com>
[mcs.git] / tests / Makefile
blobb25514fce37858a5505343ec3d7a071f6fcd3ed7
2 # use `run-test'
5 thisdir = tests
6 SUBDIRS =
7 include ../build/rules.make
9 DISTFILES = README.tests
10 DISTFILES += $(wildcard *.cs) $(wildcard *.il) $(wildcard *.xml) $(wildcard *.inc) $(wildcard known-issues-*) $(wildcard *.snk)
12 with_mono_path = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH"
14 ifeq (default, $(PROFILE))
15 # force this, we don't case if CSC is broken. This also
16 # means we can use --options, yay.
17 MCS = $(with_mono_path) $(INTERNAL_MCS)
18 endif
19 ilasm = $(topdir)/class/lib/net_1_1_bootstrap/ilasm.exe
20 ILASM = MONO_PATH="$(topdir)/class/lib/net_1_1_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(ilasm)
22 ifeq (net_2_0, $(PROFILE))
23 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
24 endif
26 USE_MCS_FLAGS :=
28 # mention all targets
29 all-local $(STD_TARGETS:=-local):
31 VALID_PROFILE := $(filter default net_2_0 net_2_1, $(PROFILE))
32 ifdef VALID_PROFILE
33 # casts
34 bootstrap-cast.exe: gen-cast-test.cs
35 $(BOOT_COMPILE) -target:exe /out:$@ $<
37 casts.cs: bootstrap-cast.exe
38 $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) $< >$@
40 casts-mcs.exe: casts.cs
41 $(CSCOMPILE) -target:exe /out:$@ $<
43 casts-boot.exe: casts.cs
44 $(BOOT_COMPILE) -target:exe /out:$@ $<
46 boot-casts.out: casts-boot.exe
47 $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) $< >$@
49 mcs-casts.out: casts-mcs.exe
50 $(with_mono_path) $(RUNTIME) $(RUNTIME_FLAGS) $< >$@
52 test-casts: boot-casts.out mcs-casts.out
53 cmp $^
55 test-local: casts-boot.exe
57 ifeq (net_2_1, $(PROFILE))
58 COMPILER_NAME = smcs
59 TEST_PATTERN = '*test-*.cs'
60 LOCAL_RUNTIME_FLAGS = --security=temporary-smcs-hack
61 endif
62 ifeq (net_2_0, $(PROFILE))
63 COMPILER_NAME = gmcs
64 TEST_PATTERN = '*test-*.cs'
65 endif
66 ifeq (default, $(PROFILE))
67 COMPILER_NAME = mcs
68 TEST_PATTERN = 'test-*.cs'
69 endif
71 COMPILER = $(topdir)/class/lib/$(PROFILE)/$(COMPILER_NAME).exe
72 TESTER = MONO_RUNTIME='$(RUNTIME)' $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(LOCAL_RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/compiler-tester.exe
74 TEST_ILS := $(wildcard *-lib.il)
76 run-test-local: $(TEST_ILS:.il=.dll)
77 $(TESTER) -mode:pos -files:$(TEST_PATTERN) -compiler:$(COMPILER) -issues:known-issues-$(COMPILER_NAME) -log:$(COMPILER_NAME).log $(TESTER_OPTIONS)
79 test-everything:
80 $(MAKE) PROFILE=default run-test
81 $(MAKE) PROFILE=net_2_0 run-test
83 test-generics:
84 $(MAKE) PROFILE=net_2_0 run-test
86 clean-local:
87 -rm -fr dir-*
88 -rm -f *.exe *.dll *.netmodule *.out *.pdb *.mdb casts.cs *.log
89 -rm -f xml-*.xml
91 dist-local: dist-default
92 rm -f $(distdir)/casts.cs
94 %-il.dll: %-il.il
95 $(ILASM) /dll $<
97 %-lib.dll: %-lib.il
98 $(ILASM) /dll /out:$@ $<
100 ifeq (default, $(PROFILE))
101 run-test-local: ilasm
102 ilasm:
103 $(ILASM) /dll property-il.il
104 $(CSCOMPILE) /r:property-il.dll property-main.cs /out:property-main.exe
105 $(TEST_RUNTIME) property-main.exe
106 endif
108 endif