5a8bc7d0e481fc39c498d5a72fd1e9748f5897fa
[mono.git] / mcs / build / tests.make
1 # -*- makefile -*-
2 #
3 # Rules for building unit tests.
4
5 # Includers of this file must define the following values:
6 #
7 #   ASSEMBLY
8 #   ASSEMBLY_EXT
9 #   the_assembly
10
11 tests_CLEAN_FILES := 
12
13 ifndef TEST_COMPILE
14 TEST_COMPILE = $(subst $(test_remove),,$(CSCOMPILE))
15 endif
16
17 TEST_RUNTIME_WRAPPERS_PATH = $(shell dirname $(RUNTIME))/_tmpinst/bin
18
19 ## Unit test support
20 ifndef NO_TEST
21
22 test_nunit_lib = nunitlite.dll
23 xunit_core := xunit.core xunit.abstractions xunit.assert Xunit.NetCore.Extensions
24 xunit_deps := System.Runtime
25 xunit_src  := $(patsubst %,$(topdir)/../external/xunit-binaries/%,BenchmarkAttribute.cs BenchmarkDiscover.cs)
26 xunit_class_deps := 
27
28 xunit_libs_ref = $(patsubst %,-r:$(topdir)/../external/xunit-binaries/%.dll,$(xunit_core))
29 xunit_libs_ref += $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE)/Facades/%.dll,$(xunit_deps))
30
31 xunit_libs_dep = $(xunit_class_deps:%=$(topdir)/class/lib/$(PROFILE)/$(PARENT_PROFILE)%.dll)
32 xunit_libs_ref += $(xunit_libs_dep:%=-r:%)
33
34 TEST_LIB_MCS_FLAGS = $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE)/%.dll,$(TEST_LIB_REFS))
35 XTEST_LIB_MCS_FLAGS = $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE)/%.dll,$(XTEST_LIB_REFS))
36
37 test_nunit_dep = $(test_nunit_lib:%=$(topdir)/class/lib/$(PROFILE)/$(PARENT_PROFILE)%)
38 test_nunit_ref = $(test_nunit_dep:%=-r:%)
39 tests_CLEAN_FILES += TestResult*.xml
40
41 test_sourcefile = $(PROFILE)_$(ASSEMBLY:$(ASSEMBLY_EXT)=_test.dll.sources)
42
43 ifeq ($(wildcard $(test_sourcefile)),)
44 test_sourcefile = $(ASSEMBLY:$(ASSEMBLY_EXT)=_test.dll.sources)
45 endif
46
47 test_lib = $(PROFILE)_$(ASSEMBLY:$(ASSEMBLY_EXT)=_test.dll)
48
49 test_sourcefile_excludes = $(test_lib).exclude.sources
50
51 test_pdb = $(test_lib:.dll=.pdb)
52 test_response = $(depsdir)/$(test_lib).response
53 test_makefrag = $(depsdir)/$(test_lib).makefrag
54 test_flags = -r:$(the_assembly) $(test_nunit_ref) $(TEST_MCS_FLAGS) $(TEST_LIB_MCS_FLAGS)
55 tests_CLEAN_FILES += $(ASSEMBLY:$(ASSEMBLY_EXT)=_test*.dll) $(ASSEMBLY:$(ASSEMBLY_EXT)=_test*.pdb) $(test_response) $(test_makefrag)
56
57 xtest_sourcefile = $(PROFILE)_$(ASSEMBLY:$(ASSEMBLY_EXT)=_xtest.dll.sources)
58
59
60 xunit_test_lib = $(PROFILE)_$(ASSEMBLY:$(ASSEMBLY_EXT)=_xunit-test.dll)
61
62 xtest_response = $(depsdir)/$(xunit_test_lib).response
63 xtest_makefrag = $(depsdir)/$(xunit_test_lib).makefrag
64 xtest_flags = -r:$(the_assembly) $(xunit_libs_ref) $(XTEST_MCS_FLAGS) $(XTEST_LIB_MCS_FLAGS)
65
66 ifeq ($(wildcard $(xtest_sourcefile)),)
67 xtest_sourcefile = $(ASSEMBLY:$(ASSEMBLY_EXT)=_xtest.dll.sources)
68 tests_CLEAN_FILES += $(xunit_test_lib) $(xtest_response) $(xtest_makefrag)
69 endif
70
71 ifndef HAVE_CS_TESTS
72 HAVE_CS_TESTS := $(wildcard $(test_sourcefile))
73 endif
74
75 HAVE_SOURCE_EXCLUDES := $(wildcard $(test_sourcefile_excludes))
76
77 HAVE_CS_XTESTS := $(wildcard $(xtest_sourcefile))
78
79 endif # !NO_TEST
80
81 ifndef NO_TEST
82 $(test_nunit_dep): $(topdir)/build/deps/nunit-$(PROFILE).stamp
83         @if test -f $@; then :; else rm -f $<; $(MAKE) $<; fi
84
85 $(topdir)/build/deps/nunit-$(PROFILE).stamp:
86 ifndef PARENT_PROFILE
87         cd ${topdir}/tools/nunit-lite && $(MAKE)
88 endif
89         echo "stamp" >$@
90
91 tests_CLEAN_FILES += $(topdir)/build/deps/nunit-$(PROFILE).stamp
92
93 endif
94
95 test_assemblies :=
96
97 ifdef HAVE_CS_TESTS
98 test_assemblies += $(test_lib)
99 endif
100
101 ifdef test_assemblies
102 check: run-test
103 test-local: $(test_assemblies)
104 run-test-local: run-test-lib
105 run-test-ondotnet-local: run-test-ondotnet-lib
106
107 TEST_HARNESS_EXCLUDES = -exclude=$(PLATFORM_TEST_HARNESS_EXCLUDES)$(PROFILE_TEST_HARNESS_EXCLUDES)NotWorking,CAS
108 TEST_HARNESS_EXCLUDES_ONDOTNET = /exclude:$(PLATFORM_TEST_HARNESS_EXCLUDES)$(PROFILE_TEST_HARNESS_EXCLUDES)NotDotNet,CAS
109
110 NOSHADOW_FLAG =
111
112 ifdef FIXTURE
113 FIXTURE_ARG = -test=MonoTests.$(FIXTURE)
114 endif
115
116 ifdef TESTNAME
117 TESTNAME_ARG = -test=MonoTests.$(TESTNAME)
118 endif
119
120 ifdef TEST_HARNESS_VERBOSE
121 LABELS_ARG = -labels
122 endif
123
124 ifdef ALWAYS_AOT
125 test-local-aot-compile: $(topdir)/build/deps/nunit-$(PROFILE).stamp
126         PATH="$(TEST_RUNTIME_WRAPPERS_PATH):$(PATH)" MONO_REGISTRY_PATH="$(HOME)/.mono/registry" MONO_TESTS_IN_PROGRESS="yes" $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(AOT_BUILD_FLAGS) $(test_assemblies)
127
128 else
129 test-local-aot-compile: $(topdir)/build/deps/nunit-$(PROFILE).stamp
130
131 endif # ALWAYS_AOT
132
133 NUNITLITE_CONFIG_FILE=$(topdir)/class/lib/$(PROFILE)/$(PARENT_PROFILE)nunit-lite-console.exe.config
134
135 patch-nunitlite-appconfig:
136         cp -f $(topdir)/tools/nunit-lite/nunit-lite-console/nunit-lite-console.exe.config.tmpl $(NUNITLITE_CONFIG_FILE)
137 ifdef TEST_NUNITLITE_APP_CONFIG_GLOBAL
138         sed -i -e "/__INSERT_CUSTOM_APP_CONFIG_GLOBAL__/r $(TEST_NUNITLITE_APP_CONFIG_GLOBAL)" $(NUNITLITE_CONFIG_FILE)
139 endif
140 ifdef TEST_NUNITLITE_APP_CONFIG_RUNTIME
141         sed -i -e "/__INSERT_CUSTOM_APP_CONFIG_RUNTIME__/r $(TEST_NUNITLITE_APP_CONFIG_RUNTIME)" $(NUNITLITE_CONFIG_FILE)
142 endif
143
144 ## FIXME: i18n problem in the 'sed' command below
145 run-test-lib: test-local test-local-aot-compile patch-nunitlite-appconfig
146         ok=:; \
147         PATH="$(TEST_RUNTIME_WRAPPERS_PATH):$(PATH)" MONO_REGISTRY_PATH="$(HOME)/.mono/registry" MONO_TESTS_IN_PROGRESS="yes" $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(AOT_RUN_FLAGS) $(TEST_HARNESS) $(test_assemblies) $(NOSHADOW_FLAG) $(TEST_HARNESS_FLAGS) $(LOCAL_TEST_HARNESS_FLAGS) $(TEST_HARNESS_EXCLUDES) $(LABELS_ARG) -format:nunit2 -result:TestResult-$(PROFILE).xml $(FIXTURE_ARG) $(TESTNAME_ARG)|| ok=false; \
148         if [ ! -f "TestResult-$(PROFILE).xml" ]; then echo "<?xml version='1.0' encoding='utf-8'?><test-results failures='1' total='1' not-run='0' name='bcl-tests' date='$$(date +%F)' time='$$(date +%T)'><test-suite name='$(strip $(test_assemblies))' success='False' time='0'><results><test-case name='crash' executed='True' success='False' time='0'><failure><message>The test runner didn't produce a test result XML, probably due to a crash of the runtime. Check the log for more details.</message><stack-trace></stack-trace></failure></test-case></results></test-suite></test-results>" > TestResult-$(PROFILE).xml; fi; \
149         $$ok
150
151 ## Instructs compiler to compile to target .net execution, it can be usefull in rare cases when runtime detection is not possible
152 run-test-ondotnet-lib: LOCAL_TEST_COMPILER_ONDOTNET_FLAGS:=-d:RUN_ONDOTNET
153 run-test-ondotnet-lib: test-local
154         ok=:; \
155         $(TEST_HARNESS) $(test_assemblies) $(NOSHADOW_FLAG) $(TEST_HARNESS_FLAGS) $(LOCAL_TEST_HARNESS_ONDOTNET_FLAGS) $(TEST_HARNESS_EXCLUDES_ONDOTNET) $(LABELS_ARG) -format:nunit2 -result:TestResult-ondotnet-$(PROFILE).xml $(FIXTURE_ARG) $(TESTNAME_ARG) || ok=false; \
156         $$ok
157
158
159 endif # test_assemblies
160
161 TEST_FILES =
162
163 ifdef HAVE_CS_TESTS
164 TEST_FILES += `sed -e '/^$$/d' -e 's,^../,,' -et -e 's,^,Test/,' $(test_sourcefile)`
165 endif
166
167 ifdef HAVE_CS_TESTS
168
169 $(test_lib): $(the_assembly) $(test_response) $(test_nunit_dep)
170         $(TEST_COMPILE) $(LIBRARY_FLAGS) -target:library -out:$@ $(test_flags) $(LOCAL_TEST_COMPILER_ONDOTNET_FLAGS) @$(test_response)
171
172 test_response_preprocessed = $(test_response)_preprocessed
173
174 # This handles .excludes/.sources pairs, as well as resolving the
175 # includes that occur in .sources files
176 $(test_response_preprocessed): $(test_sourcefile)
177         $(SHELL) $(topdir)/build/gensources.sh $@ '$(test_sourcefile)' '$(test_sourcefile_excludes)'
178
179 $(test_response): $(test_response_preprocessed)
180 #       @echo Creating $@ ...
181         @sed -e '/^$$/d' -e 's,^,Test/,' $(test_response_preprocessed) | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
182
183 $(test_makefrag): $(test_response)
184 #       @echo Creating $@ ...
185         @sed 's,^,$(test_lib): ,' $< >$@
186
187 -include $(test_makefrag)
188
189 build-test-lib: $(test_lib)
190         @echo Building testing lib
191
192 endif
193
194
195 ifdef HAVE_CS_XTESTS
196
197 XTEST_HARNESS_PATH = $(topdir)/../external/xunit-binaries
198 XTEST_HARNESS = $(XTEST_HARNESS_PATH)/xunit.console.exe
199 XTEST_HARNESS_FLAGS := -noappdomain -noshadow -parallel none -nunit TestResult-$(PROFILE)-xunit.xml
200 XTEST_TRAIT := -notrait category=failing -notrait category=nonnetcoreapptests -notrait Benchmark=true -notrait category=outerloop
201
202 ifdef FIXTURE
203 XTEST_HARNESS_FLAGS += -class $(FIXTURE)
204 endif
205
206 ifdef TESTNAME
207 XTEST_HARNESS_FLAGS += -method $(TESTNAME)
208 endif
209
210 check: run-xunit-test-local
211 run-xunit-test: run-xunit-test-local
212 xunit-test-local: $(xunit_test_lib)
213 run-xunit-test-local: run-xunit-test-lib
214
215 # cp -rf is a HACK for xunit runner to require xunit.execution.desktop.dll file in local folder on .net only
216 run-xunit-test-lib: xunit-test-local
217         @cp -rf $(XTEST_HARNESS_PATH)/xunit.execution.desktop.dll xunit.execution.desktop.dll
218         ok=:; \
219         PATH="$(TEST_RUNTIME_WRAPPERS_PATH):$(PATH)" $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(AOT_RUN_FLAGS) $(XTEST_HARNESS) $(xunit_test_lib) $(XTEST_HARNESS_FLAGS) $(XTEST_TRAIT) || ok=false; \
220         $$ok
221         @rm -f xunit.execution.desktop.dll
222
223 $(xunit_test_lib): $(the_assembly) $(xtest_response) $(xunit_libs_dep) $(xunit_src)
224         $(TEST_COMPILE) $(LIBRARY_FLAGS) $(XTEST_LIB_FLAGS) -target:library -out:$@ $(xtest_flags) @$(xtest_response) $(xunit_src)
225
226 xtest_response_preprocessed = $(xtest_response)_preprocessed
227
228 # This handles .excludes/.sources pairs, as well as resolving the
229 # includes that occur in .sources files
230 $(xtest_response): $(xtest_sourcefile)
231         $(SHELL) $(topdir)/build/gensources.sh $@ '$(xtest_sourcefile)' '$(xtest_sourcefile_excludes)'
232
233 $(xtest_makefrag): $(xtest_response)
234         @echo Creating $@ ...
235         @sed 's,^,$(xunit_test_lib): ,' $< >$@
236
237 -include $(xtest_makefrag)
238
239 endif
240
241
242 .PHONY: patch-nunitlite-appconfig