]> git.lizzy.rs Git - rust.git/blob - mk/tests.mk
Rollup merge of #34080 - royalstream:royalstream-book-june4, r=steveklabnik
[rust.git] / mk / tests.mk
1 # Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 # file at the top-level directory of this distribution and at
3 # http://rust-lang.org/COPYRIGHT.
4 #
5 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 # option. This file may not be copied, modified, or distributed
9 # except according to those terms.
10
11
12 ######################################################################
13 # Test variables
14 ######################################################################
15
16 # The names of crates that must be tested
17
18 # libcore/librustc_unicode tests are in a separate crate
19 DEPS_coretest :=
20 $(eval $(call RUST_CRATE,coretest))
21
22 DEPS_collectionstest :=
23 $(eval $(call RUST_CRATE,collectionstest))
24
25 TEST_TARGET_CRATES = $(filter-out core rustc_unicode alloc_system libc \
26                                   alloc_jemalloc panic_unwind \
27                                   panic_abort,$(TARGET_CRATES)) \
28                         collectionstest coretest
29 TEST_DOC_CRATES = $(DOC_CRATES) arena flate fmt_macros getopts graphviz \
30                 log rand rbml serialize syntax term test
31 TEST_HOST_CRATES = $(filter-out rustc_typeck rustc_borrowck rustc_resolve \
32                                 rustc_trans rustc_lint,\
33                      $(HOST_CRATES))
34 TEST_CRATES = $(TEST_TARGET_CRATES) $(TEST_HOST_CRATES)
35
36 ######################################################################
37 # Environment configuration
38 ######################################################################
39
40 # The arguments to all test runners
41 ifdef TESTNAME
42   TESTARGS += $(TESTNAME)
43 endif
44
45 ifdef CHECK_IGNORED
46   TESTARGS += --ignored
47 endif
48
49 # Arguments to the cfail/rfail/rpass tests
50 ifdef CFG_VALGRIND
51   CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
52 endif
53
54 CTEST_TESTARGS := $(TESTARGS)
55
56 # --bench is only relevant for crate tests, not for the compile tests
57 ifdef PLEASE_BENCH
58   TESTARGS += --bench
59 endif
60
61 ifdef VERBOSE
62   CTEST_TESTARGS += --verbose
63 endif
64
65 # Setting locale ensures that gdb's output remains consistent.
66 # This prevents tests from failing with some locales (fixes #17423).
67 export LC_ALL=C
68
69 TEST_LOG_FILE=tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).log
70 TEST_OK_FILE=tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).ok
71
72 define DEF_TARGET_COMMANDS
73
74 ifdef CFG_UNIXY_$(1)
75   CFG_RUN_TEST_$(1)=$$(TARGET_RPATH_VAR$$(2)_T_$$(3)_H_$$(4)) \
76           $$(call CFG_RUN_$(1),,$$(CFG_VALGRIND) $$(1))
77 endif
78
79 ifdef CFG_WINDOWSY_$(1)
80   CFG_TESTLIB_$(1)=$$(CFG_BUILD_DIR)$$(2)/$$(strip \
81    $$(if $$(findstring stage0,$$(1)), \
82        stage0/$$(CFG_LIBDIR_RELATIVE), \
83       $$(if $$(findstring stage1,$$(1)), \
84            stage1/$$(CFG_LIBDIR_RELATIVE), \
85           $$(if $$(findstring stage2,$$(1)), \
86                stage2/$$(CFG_LIBDIR_RELATIVE), \
87                $$(if $$(findstring stage3,$$(1)), \
88                     stage3/$$(CFG_LIBDIR_RELATIVE), \
89                )))))/rustlib/$$(CFG_BUILD)/lib
90   CFG_RUN_TEST_$(1)=$$(TARGET_RPATH_VAR$$(2)_T_$$(3)_H_$$(4)) \
91           $$(call CFG_RUN_$(1),$$(call CFG_TESTLIB_$(1),$$(1),$$(4)),$$(1))
92 endif
93
94 # Run the compiletest runner itself under valgrind
95 ifdef CTEST_VALGRIND
96 CFG_RUN_CTEST_$(1)=$$(RPATH_VAR$$(1)_T_$$(3)_H_$$(3)) \
97       $$(call CFG_RUN_TEST_$$(CFG_BUILD),$$(3),$$(4))
98 else
99 CFG_RUN_CTEST_$(1)=$$(RPATH_VAR$$(1)_T_$$(3)_H_$$(3)) \
100       $$(call CFG_RUN_$$(CFG_BUILD),$$(TLIB$$(1)_T_$$(3)_H_$$(3)),$$(2))
101 endif
102
103 endef
104
105 $(foreach target,$(CFG_TARGET), \
106   $(eval $(call DEF_TARGET_COMMANDS,$(target))))
107
108 # Target platform specific variables for android
109 define DEF_ADB_DEVICE_STATUS
110 CFG_ADB_DEVICE_STATUS=$(1)
111 endef
112
113 $(foreach target,$(CFG_TARGET), \
114   $(if $(findstring android, $(target)), \
115     $(if $(findstring adb,$(CFG_ADB)), \
116       $(if $(findstring device,$(shell $(CFG_ADB) devices 2>/dev/null | grep -E '^[:_A-Za-z0-9-]+[[:blank:]]+device')), \
117         $(info check: android device attached) \
118         $(eval $(call DEF_ADB_DEVICE_STATUS, true)), \
119         $(info check: android device not attached) \
120         $(eval $(call DEF_ADB_DEVICE_STATUS, false)) \
121       ), \
122       $(info check: adb not found) \
123       $(eval $(call DEF_ADB_DEVICE_STATUS, false)) \
124     ), \
125   ) \
126 )
127
128 ifeq ($(CFG_ADB_DEVICE_STATUS),true)
129 CFG_ADB_TEST_DIR=/data/tmp
130
131 $(info check: android device test dir $(CFG_ADB_TEST_DIR) ready \
132  $(shell $(CFG_ADB) remount 1>/dev/null) \
133  $(shell $(CFG_ADB) shell rm -r $(CFG_ADB_TEST_DIR) >/dev/null) \
134  $(shell $(CFG_ADB) shell mkdir $(CFG_ADB_TEST_DIR)) \
135  $(shell $(CFG_ADB) push $(S)src/etc/adb_run_wrapper.sh $(CFG_ADB_TEST_DIR) 1>/dev/null) \
136  $(foreach target,$(CFG_TARGET), \
137   $(if $(findstring android, $(target)), \
138    $(shell $(CFG_ADB) shell mkdir $(CFG_ADB_TEST_DIR)/$(target)) \
139    $(foreach crate,$(TARGET_CRATES_$(target)), \
140     $(shell $(CFG_ADB) push $(TLIB2_T_$(target)_H_$(CFG_BUILD))/$(call CFG_LIB_GLOB_$(target),$(crate)) \
141                     $(CFG_ADB_TEST_DIR)/$(target))), \
142  )))
143 else
144 CFG_ADB_TEST_DIR=
145 endif
146
147 # $(1) - name of doc test
148 # $(2) - file of the test
149 define DOCTEST
150 DOC_NAMES := $$(DOC_NAMES) $(1)
151 DOCFILE_$(1) := $(2)
152 endef
153
154 $(foreach doc,$(DOCS), \
155   $(eval $(call DOCTEST,md-$(doc),$(S)src/doc/$(doc).md)))
156 $(foreach file,$(wildcard $(S)src/doc/book/*.md), \
157   $(eval $(call DOCTEST,$(file:$(S)src/doc/book/%.md=book-%),$(file))))
158 $(foreach file,$(wildcard $(S)src/doc/nomicon/*.md), \
159   $(eval $(call DOCTEST,$(file:$(S)src/doc/nomicon/%.md=nomicon-%),$(file))))
160 ######################################################################
161 # Main test targets
162 ######################################################################
163
164 # The main testing target. Tests lots of stuff.
165 check: check-sanitycheck cleantmptestlogs cleantestlibs all check-stage2 tidy
166         $(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
167
168 # As above but don't bother running tidy.
169 check-notidy: check-sanitycheck cleantmptestlogs cleantestlibs all check-stage2
170         $(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
171
172 # A slightly smaller set of tests for smoke testing.
173 check-lite: check-sanitycheck cleantestlibs cleantmptestlogs \
174         $(foreach crate,$(TEST_TARGET_CRATES),check-stage2-$(crate)) \
175         check-stage2-rpass check-stage2-rpass-valgrind \
176         check-stage2-rfail check-stage2-cfail check-stage2-pfail check-stage2-rmake
177         $(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
178
179 # Only check the 'reference' tests: rpass/cfail/rfail/rmake.
180 check-ref: check-sanitycheck cleantestlibs cleantmptestlogs check-stage2-rpass \
181         check-stage2-rpass-valgrind check-stage2-rfail check-stage2-cfail check-stage2-pfail \
182         check-stage2-rmake
183         $(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
184
185 # Only check the docs.
186 check-docs: check-sanitycheck cleantestlibs cleantmptestlogs check-stage2-docs
187         $(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
188
189 # Some less critical tests that are not prone to breakage.
190 # Not run as part of the normal test suite, but tested by bors on checkin.
191 check-secondary: check-build-compiletest check-build-lexer-verifier check-lexer check-pretty
192
193 .PHONY: check-sanitycheck
194
195 check-sanitycheck:
196         $(Q)$(CFG_PYTHON) $(S)src/etc/check-sanitycheck.py
197
198 # check + check-secondary.
199 #
200 # Issue #17883: build check-secondary first so hidden dependencies in
201 # e.g. building compiletest are exercised (resolve those by adding
202 # deps to rules that need them; not by putting `check` first here).
203 check-all: check-secondary check
204
205 # Pretty-printing tests.
206 check-pretty: check-stage2-T-$(CFG_BUILD)-H-$(CFG_BUILD)-pretty-exec
207
208 define DEF_CHECK_BUILD_COMPILETEST_FOR_STAGE
209 check-stage$(1)-build-compiletest:      $$(HBIN$(1)_H_$(CFG_BUILD))/compiletest$$(X_$(CFG_BUILD))
210 endef
211
212 $(foreach stage,$(STAGES), \
213  $(eval $(call DEF_CHECK_BUILD_COMPILETEST_FOR_STAGE,$(stage))))
214
215 check-build-compiletest: \
216         check-stage1-build-compiletest \
217         check-stage2-build-compiletest
218
219 .PHONY: cleantmptestlogs cleantestlibs
220
221 cleantmptestlogs:
222         $(Q)rm -f tmp/*.log
223
224 cleantestlibs:
225         $(Q)find $(CFG_BUILD)/test \
226          -name '*.[odasS]' -o \
227          -name '*.so' -o \
228          -name '*.dylib' -o \
229          -name '*.dll' -o \
230          -name '*.def' -o \
231          -name '*.bc' -o \
232          -name '*.dSYM' -o \
233          -name '*.libaux' -o \
234          -name '*.out' -o \
235          -name '*.err' -o \
236          -name '*.debugger.script' \
237          | xargs rm -rf
238
239
240 ######################################################################
241 # Tidy
242 ######################################################################
243
244 .PHONY: tidy
245 tidy: $(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)) \
246                 $(SNAPSHOT_RUSTC_POST_CLEANUP)
247         $(TARGET_RPATH_VAR0_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $< $(S)src
248
249 $(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)): \
250                 $(TSREQ0_T_$(CFG_BUILD)_H_$(CFG_BUILD)) \
251                 $(TLIB0_T_$(CFG_BUILD)_H_$(CFG_BUILD))/stamp.std \
252                 $(call rwildcard,$(S)src/tools/tidy/src,*.rs) \
253                 $(SNAPSHOT_RUSTC_POST_CLEANUP) | \
254                 $(TLIB0_T_$(CFG_BUILD)_H_$(CFG_BUILD))
255         $(STAGE0_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $(S)src/tools/tidy/src/main.rs \
256                 --out-dir $(@D) --crate-name tidy
257
258 ######################################################################
259 # Sets of tests
260 ######################################################################
261
262 define DEF_TEST_SETS
263
264 check-stage$(1)-T-$(2)-H-$(3)-exec: \
265         check-stage$(1)-T-$(2)-H-$(3)-rpass-exec \
266         check-stage$(1)-T-$(2)-H-$(3)-rfail-exec \
267         check-stage$(1)-T-$(2)-H-$(3)-cfail-exec \
268         check-stage$(1)-T-$(2)-H-$(3)-pfail-exec \
269         check-stage$(1)-T-$(2)-H-$(3)-rpass-valgrind-exec \
270         check-stage$(1)-T-$(2)-H-$(3)-rmake-exec \
271         check-stage$(1)-T-$(2)-H-$(3)-rustdocck-exec \
272         check-stage$(1)-T-$(2)-H-$(3)-crates-exec \
273         check-stage$(1)-T-$(2)-H-$(3)-doc-crates-exec \
274         check-stage$(1)-T-$(2)-H-$(3)-debuginfo-gdb-exec \
275         check-stage$(1)-T-$(2)-H-$(3)-debuginfo-lldb-exec \
276         check-stage$(1)-T-$(2)-H-$(3)-incremental-exec \
277         check-stage$(1)-T-$(2)-H-$(3)-ui-exec \
278         check-stage$(1)-T-$(2)-H-$(3)-doc-exec \
279         check-stage$(1)-T-$(2)-H-$(3)-doc-error-index-exec \
280         check-stage$(1)-T-$(2)-H-$(3)-pretty-exec
281
282 ifndef CFG_DISABLE_CODEGEN_TESTS
283 check-stage$(1)-T-$(2)-H-$(3)-exec: \
284         check-stage$(1)-T-$(2)-H-$(3)-codegen-exec \
285         check-stage$(1)-T-$(2)-H-$(3)-codegen-units-exec
286 endif
287
288 # Only test the compiler-dependent crates when the target is
289 # able to build a compiler (when the target triple is in the set of host triples)
290 ifneq ($$(findstring $(2),$$(CFG_HOST)),)
291
292 check-stage$(1)-T-$(2)-H-$(3)-exec: \
293         check-stage$(1)-T-$(2)-H-$(3)-rpass-full-exec \
294         check-stage$(1)-T-$(2)-H-$(3)-rfail-full-exec \
295         check-stage$(1)-T-$(2)-H-$(3)-cfail-full-exec
296
297 check-stage$(1)-T-$(2)-H-$(3)-pretty-exec: \
298         check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass-full-exec \
299         check-stage$(1)-T-$(2)-H-$(3)-pretty-rfail-full-exec
300
301 check-stage$(1)-T-$(2)-H-$(3)-crates-exec: \
302         $$(foreach crate,$$(TEST_CRATES), \
303            check-stage$(1)-T-$(2)-H-$(3)-$$(crate)-exec)
304
305 else
306
307 check-stage$(1)-T-$(2)-H-$(3)-crates-exec: \
308         $$(foreach crate,$$(TEST_TARGET_CRATES), \
309            check-stage$(1)-T-$(2)-H-$(3)-$$(crate)-exec)
310
311 endif
312
313 check-stage$(1)-T-$(2)-H-$(3)-doc-crates-exec: \
314         $$(foreach crate,$$(TEST_DOC_CRATES), \
315            check-stage$(1)-T-$(2)-H-$(3)-doc-crate-$$(crate)-exec)
316
317 check-stage$(1)-T-$(2)-H-$(3)-doc-exec: \
318         $$(foreach docname,$$(DOC_NAMES), \
319            check-stage$(1)-T-$(2)-H-$(3)-doc-$$(docname)-exec) \
320
321 check-stage$(1)-T-$(2)-H-$(3)-pretty-exec: \
322         check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass-exec \
323     check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass-valgrind-exec \
324         check-stage$(1)-T-$(2)-H-$(3)-pretty-rfail-exec \
325         check-stage$(1)-T-$(2)-H-$(3)-pretty-pretty-exec
326
327 endef
328
329 $(foreach host,$(CFG_HOST), \
330  $(foreach target,$(CFG_TARGET), \
331   $(foreach stage,$(STAGES), \
332     $(eval $(call DEF_TEST_SETS,$(stage),$(target),$(host))))))
333
334
335 ######################################################################
336 # Crate testing
337 ######################################################################
338
339 define TEST_RUNNER
340
341 # If NO_REBUILD is set then break the dependencies on everything but
342 # the source files so we can test crates without rebuilding any of the
343 # parent crates.
344 ifeq ($(NO_REBUILD),)
345 TESTDEP_$(1)_$(2)_$(3)_$(4) = $$(SREQ$(1)_T_$(2)_H_$(3)) \
346                             $$(foreach crate,$$(TARGET_CRATES_$(2)), \
347                                 $$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(crate)) \
348                                 $$(CRATE_FULLDEPS_$(1)_T_$(2)_H_$(3)_$(4))
349
350 else
351 TESTDEP_$(1)_$(2)_$(3)_$(4) = $$(RSINPUTS_$(4))
352 endif
353
354 $(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2)): CFG_COMPILER_HOST_TRIPLE = $(2)
355 $(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2)): \
356                 $$(CRATEFILE_$(4)) \
357                 $$(TESTDEP_$(1)_$(2)_$(3)_$(4))
358         @$$(call E, rustc: $$@)
359         $(Q)CFG_LLVM_LINKAGE_FILE=$$(LLVM_LINKAGE_PATH_$(2)) \
360             $$(subst @,,$$(STAGE$(1)_T_$(2)_H_$(3))) -o $$@ $$< --test \
361                 -Cmetadata="test-crate" -L "$$(RT_OUTPUT_DIR_$(2))" \
362                 $$(LLVM_LIBDIR_RUSTFLAGS_$(2)) \
363                 $$(RUSTFLAGS_$(4))
364
365 endef
366
367 $(foreach host,$(CFG_HOST), \
368  $(eval $(foreach target,$(CFG_TARGET), \
369   $(eval $(foreach stage,$(STAGES), \
370    $(eval $(foreach crate,$(TEST_CRATES), \
371     $(eval $(call TEST_RUNNER,$(stage),$(target),$(host),$(crate))))))))))
372
373 define DEF_TEST_CRATE_RULES
374 check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))
375
376 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
377                 $(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2))
378         @$$(call E, run: $$<)
379         $$(Q)touch $$@.start_time
380         $$(Q)$$(call CFG_RUN_TEST_$(2),$$<,$(1),$(2),$(3)) $$(TESTARGS) \
381             --logfile $$(call TEST_LOG_FILE,$(1),$(2),$(3),$(4)) \
382             $$(call CRATE_TEST_EXTRA_ARGS,$(1),$(2),$(3),$(4)) \
383             && touch -r $$@.start_time $$@ && rm $$@.start_time
384 endef
385
386 define DEF_TEST_CRATE_RULES_android
387 check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))
388
389 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
390                 $(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2))
391         @$$(call E, run: $$< via adb)
392         $$(Q)touch $$@.start_time
393         $$(Q)$(CFG_ADB) push $$< $(CFG_ADB_TEST_DIR)
394         $$(Q)$(CFG_ADB) shell '(cd $(CFG_ADB_TEST_DIR); LD_LIBRARY_PATH=./$(2) \
395                 ./$$(notdir $$<) \
396                 --logfile $(CFG_ADB_TEST_DIR)/check-stage$(1)-T-$(2)-H-$(3)-$(4).log \
397                 $$(call CRATE_TEST_EXTRA_ARGS,$(1),$(2),$(3),$(4)) $(TESTARGS))' \
398                 > tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp
399         $$(Q)cat tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp
400         $$(Q)touch tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).log
401         $$(Q)$(CFG_ADB) pull $(CFG_ADB_TEST_DIR)/check-stage$(1)-T-$(2)-H-$(3)-$(4).log tmp/
402         $$(Q)$(CFG_ADB) shell rm $(CFG_ADB_TEST_DIR)/check-stage$(1)-T-$(2)-H-$(3)-$(4).log
403         @if grep -q "result: ok" tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp; \
404         then \
405                 rm tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp; \
406                 touch -r $$@.start_time $$@ && rm $$@.start_time; \
407         else \
408                 rm tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp; \
409                 exit 101; \
410         fi
411 endef
412
413 define DEF_TEST_CRATE_RULES_null
414 check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))
415
416 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
417                 $(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2))
418         @$$(call E, failing: no device for $$< )
419         false
420 endef
421
422 $(foreach host,$(CFG_HOST), \
423  $(foreach target,$(CFG_TARGET), \
424   $(foreach stage,$(STAGES), \
425    $(foreach crate, $(TEST_CRATES), \
426     $(if $(findstring $(target),$(CFG_BUILD)), \
427      $(eval $(call DEF_TEST_CRATE_RULES,$(stage),$(target),$(host),$(crate))), \
428      $(if $(findstring android, $(target)), \
429       $(if $(findstring $(CFG_ADB_DEVICE_STATUS),"true"), \
430        $(eval $(call DEF_TEST_CRATE_RULES_android,$(stage),$(target),$(host),$(crate))), \
431        $(eval $(call DEF_TEST_CRATE_RULES_null,$(stage),$(target),$(host),$(crate))) \
432       ), \
433       $(eval $(call DEF_TEST_CRATE_RULES,$(stage),$(target),$(host),$(crate))) \
434      ))))))
435
436 ######################################################################
437 # Rules for the compiletest tests (rpass, rfail, etc.)
438 ######################################################################
439
440 RPASS_RS := $(call rwildcard,$(S)src/test/run-pass/,*.rs)
441 RPASS_VALGRIND_RS := $(call rwildcard,$(S)src/test/run-pass-valgrind/,*.rs)
442 RPASS_FULL_RS := $(call rwildcard,$(S)src/test/run-pass-fulldeps/,*.rs)
443 RFAIL_FULL_RS := $(call rwildcard,$(S)src/test/run-fail-fulldeps/,*.rs)
444 CFAIL_FULL_RS := $(call rwildcard,$(S)src/test/compile-fail-fulldeps/,*.rs)
445 RFAIL_RS := $(call rwildcard,$(S)src/test/run-fail/,*.rs)
446 RFAIL_RS := $(call rwildcard,$(S)src/test/run-fail/,*.rs)
447 CFAIL_RS := $(call rwildcard,$(S)src/test/compile-fail/,*.rs)
448 PFAIL_RS := $(call rwildcard,$(S)src/test/parse-fail/,*.rs)
449 PRETTY_RS := $(call rwildcard,$(S)src/test/pretty/,*.rs)
450 DEBUGINFO_GDB_RS := $(call rwildcard,$(S)src/test/debuginfo/,*.rs)
451 DEBUGINFO_LLDB_RS := $(call rwildcard,$(S)src/test/debuginfo/,*.rs)
452 CODEGEN_RS := $(call rwildcard,$(S)src/test/codegen/,*.rs)
453 CODEGEN_CC := $(call rwildcard,$(S)src/test/codegen/,*.cc)
454 CODEGEN_UNITS_RS := $(call rwildcard,$(S)src/test/codegen-units/,*.rs)
455 INCREMENTAL_RS := $(call rwildcard,$(S)src/test/incremental/,*.rs)
456 RMAKE_RS := $(wildcard $(S)src/test/run-make/*/Makefile)
457 UI_RS := $(call rwildcard,$(S)src/test/ui/,*.rs) \
458          $(call rwildcard,$(S)src/test/ui/,*.stdout) \
459          $(call rwildcard,$(S)src/test/ui/,*.stderr)
460 RUSTDOCCK_RS := $(call rwildcard,$(S)src/test/rustdoc/,*.rs)
461
462 RPASS_TESTS := $(RPASS_RS)
463 RPASS_VALGRIND_TESTS := $(RPASS_VALGRIND_RS)
464 RPASS_FULL_TESTS := $(RPASS_FULL_RS)
465 RFAIL_FULL_TESTS := $(RFAIL_FULL_RS)
466 CFAIL_FULL_TESTS := $(CFAIL_FULL_RS)
467 RFAIL_TESTS := $(RFAIL_RS)
468 CFAIL_TESTS := $(CFAIL_RS)
469 PFAIL_TESTS := $(PFAIL_RS)
470 PRETTY_TESTS := $(PRETTY_RS)
471 DEBUGINFO_GDB_TESTS := $(DEBUGINFO_GDB_RS)
472 DEBUGINFO_LLDB_TESTS := $(DEBUGINFO_LLDB_RS)
473 CODEGEN_TESTS := $(CODEGEN_RS) $(CODEGEN_CC)
474 CODEGEN_UNITS_TESTS := $(CODEGEN_UNITS_RS)
475 INCREMENTAL_TESTS := $(INCREMENTAL_RS)
476 RMAKE_TESTS := $(RMAKE_RS)
477 UI_TESTS := $(UI_RS)
478 RUSTDOCCK_TESTS := $(RUSTDOCCK_RS)
479
480 CTEST_SRC_BASE_rpass = run-pass
481 CTEST_BUILD_BASE_rpass = run-pass
482 CTEST_MODE_rpass = run-pass
483 CTEST_RUNTOOL_rpass = $(CTEST_RUNTOOL)
484
485 CTEST_SRC_BASE_rpass-valgrind = run-pass-valgrind
486 CTEST_BUILD_BASE_rpass-valgrind = run-pass-valgrind
487 CTEST_MODE_rpass-valgrind = run-pass-valgrind
488 CTEST_RUNTOOL_rpass-valgrind = $(CTEST_RUNTOOL)
489
490 CTEST_SRC_BASE_rpass-full = run-pass-fulldeps
491 CTEST_BUILD_BASE_rpass-full = run-pass-fulldeps
492 CTEST_MODE_rpass-full = run-pass
493 CTEST_RUNTOOL_rpass-full = $(CTEST_RUNTOOL)
494
495 CTEST_SRC_BASE_rfail-full = run-fail-fulldeps
496 CTEST_BUILD_BASE_rfail-full = run-fail-fulldeps
497 CTEST_MODE_rfail-full = run-fail
498 CTEST_RUNTOOL_rfail-full = $(CTEST_RUNTOOL)
499
500 CTEST_SRC_BASE_cfail-full = compile-fail-fulldeps
501 CTEST_BUILD_BASE_cfail-full = compile-fail-fulldeps
502 CTEST_MODE_cfail-full = compile-fail
503 CTEST_RUNTOOL_cfail-full = $(CTEST_RUNTOOL)
504
505 CTEST_SRC_BASE_rfail = run-fail
506 CTEST_BUILD_BASE_rfail = run-fail
507 CTEST_MODE_rfail = run-fail
508 CTEST_RUNTOOL_rfail = $(CTEST_RUNTOOL)
509
510 CTEST_SRC_BASE_cfail = compile-fail
511 CTEST_BUILD_BASE_cfail = compile-fail
512 CTEST_MODE_cfail = compile-fail
513 CTEST_RUNTOOL_cfail = $(CTEST_RUNTOOL)
514
515 CTEST_SRC_BASE_pfail = parse-fail
516 CTEST_BUILD_BASE_pfail = parse-fail
517 CTEST_MODE_pfail = parse-fail
518 CTEST_RUNTOOL_pfail = $(CTEST_RUNTOOL)
519
520 CTEST_SRC_BASE_debuginfo-gdb = debuginfo
521 CTEST_BUILD_BASE_debuginfo-gdb = debuginfo-gdb
522 CTEST_MODE_debuginfo-gdb = debuginfo-gdb
523 CTEST_RUNTOOL_debuginfo-gdb = $(CTEST_RUNTOOL)
524
525 CTEST_SRC_BASE_debuginfo-lldb = debuginfo
526 CTEST_BUILD_BASE_debuginfo-lldb = debuginfo-lldb
527 CTEST_MODE_debuginfo-lldb = debuginfo-lldb
528 CTEST_RUNTOOL_debuginfo-lldb = $(CTEST_RUNTOOL)
529
530 CTEST_SRC_BASE_codegen = codegen
531 CTEST_BUILD_BASE_codegen = codegen
532 CTEST_MODE_codegen = codegen
533 CTEST_RUNTOOL_codegen = $(CTEST_RUNTOOL)
534
535 CTEST_SRC_BASE_codegen-units = codegen-units
536 CTEST_BUILD_BASE_codegen-units = codegen-units
537 CTEST_MODE_codegen-units = codegen-units
538 CTEST_RUNTOOL_codegen-units = $(CTEST_RUNTOOL)
539
540 CTEST_SRC_BASE_incremental = incremental
541 CTEST_BUILD_BASE_incremental = incremental
542 CTEST_MODE_incremental = incremental
543 CTEST_RUNTOOL_incremental = $(CTEST_RUNTOOL)
544
545 CTEST_SRC_BASE_rmake = run-make
546 CTEST_BUILD_BASE_rmake = run-make
547 CTEST_MODE_rmake = run-make
548 CTEST_RUNTOOL_rmake = $(CTEST_RUNTOOL)
549
550 CTEST_SRC_BASE_ui = ui
551 CTEST_BUILD_BASE_ui = ui
552 CTEST_MODE_ui = ui
553 CTEST_RUNTOOL_ui = $(CTEST_RUNTOOL)
554
555 CTEST_SRC_BASE_rustdocck = rustdoc
556 CTEST_BUILD_BASE_rustdocck = rustdoc
557 CTEST_MODE_rustdocck = rustdoc
558 CTEST_RUNTOOL_rustdocck = $(CTEST_RUNTOOL)
559
560 # CTEST_DISABLE_$(TEST_GROUP), if set, will cause the test group to be
561 # disabled and the associated message to be printed as a warning
562 # during attempts to run those tests.
563
564 ifeq ($(CFG_GDB),)
565 CTEST_DISABLE_debuginfo-gdb = "no gdb found"
566 endif
567
568 ifeq ($(CFG_LLDB),)
569 CTEST_DISABLE_debuginfo-lldb = "no lldb found"
570 endif
571
572 ifneq ($(CFG_OSTYPE),apple-darwin)
573 CTEST_DISABLE_debuginfo-lldb = "lldb tests are only run on darwin"
574 endif
575
576 ifeq ($(CFG_OSTYPE),apple-darwin)
577 CTEST_DISABLE_debuginfo-gdb = "gdb on darwin needs root"
578 endif
579
580 ifeq ($(findstring android, $(CFG_TARGET)), android)
581 CTEST_DISABLE_debuginfo-gdb =
582 CTEST_DISABLE_debuginfo-lldb = "lldb tests are disabled on android"
583 endif
584
585 ifeq ($(findstring msvc,$(CFG_TARGET)),msvc)
586 CTEST_DISABLE_debuginfo-gdb = "gdb tests are disabled on MSVC"
587 endif
588
589 # CTEST_DISABLE_NONSELFHOST_$(TEST_GROUP), if set, will cause that
590 # test group to be disabled *unless* the target is able to build a
591 # compiler (i.e. when the target triple is in the set of host
592 # triples).  The associated message will be printed as a warning
593 # during attempts to run those tests.
594
595 define DEF_CTEST_VARS
596
597 # All the per-stage build rules you might want to call from the
598 # command line.
599 #
600 # $(1) is the stage number
601 # $(2) is the target triple to test
602 # $(3) is the host triple to test
603
604 # Prerequisites for compiletest tests
605 TEST_SREQ$(1)_T_$(2)_H_$(3) = \
606         $$(HBIN$(1)_H_$(3))/compiletest$$(X_$(3)) \
607         $$(SREQ$(1)_T_$(2)_H_$(3))
608
609 # Rules for the cfail/rfail/rpass test runner
610
611 # The tests select when to use debug configuration on their own;
612 # remove directive, if present, from CFG_RUSTC_FLAGS (issue #7898).
613 CTEST_RUSTC_FLAGS := $$(subst -C debug-assertions,,$$(subst -C debug-assertions=on,,$$(CFG_RUSTC_FLAGS)))
614
615 # The tests cannot be optimized while the rest of the compiler is optimized, so
616 # filter out the optimization (if any) from rustc and then figure out if we need
617 # to be optimized
618 CTEST_RUSTC_FLAGS := $$(subst -O,,$$(CTEST_RUSTC_FLAGS))
619 ifndef CFG_DISABLE_OPTIMIZE_TESTS
620 CTEST_RUSTC_FLAGS += -O
621 endif
622
623 # Analogously to the above, whether to pass `-g` when compiling tests
624 # is a separate choice from whether to pass `-g` when building the
625 # compiler and standard library themselves.
626 CTEST_RUSTC_FLAGS := $$(subst -g,,$$(CTEST_RUSTC_FLAGS))
627 ifdef CFG_ENABLE_DEBUGINFO_TESTS
628 CTEST_RUSTC_FLAGS += -g
629 endif
630
631 CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3) = \
632                 --compile-lib-path $$(HLIB$(1)_H_$(3)) \
633         --run-lib-path $$(TLIB$(1)_T_$(2)_H_$(3)) \
634         --rustc-path $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
635         --rustdoc-path $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
636         --llvm-filecheck $(CFG_LLVM_INST_DIR_$(CFG_BUILD))/bin/FileCheck \
637         --stage-id stage$(1)-$(2) \
638         --target $(2) \
639         --host $(3) \
640         --docck-python $$(CFG_PYTHON) \
641         --lldb-python $$(CFG_LLDB_PYTHON) \
642         --gdb-version="$(CFG_GDB_VERSION)" \
643         --lldb-version="$(CFG_LLDB_VERSION)" \
644         --android-cross-path=$(CFG_ARM_LINUX_ANDROIDEABI_NDK) \
645         --adb-path=$(CFG_ADB) \
646         --adb-test-dir=$(CFG_ADB_TEST_DIR) \
647         --host-rustcflags "$(RUSTC_FLAGS_$(3)) $$(CTEST_RUSTC_FLAGS) -L $$(RT_OUTPUT_DIR_$(3))" \
648         --lldb-python-dir=$(CFG_LLDB_PYTHON_DIR) \
649         --target-rustcflags "$(RUSTC_FLAGS_$(2)) $$(CTEST_RUSTC_FLAGS) -L $$(RT_OUTPUT_DIR_$(2))" \
650         --cc '$$(call FIND_COMPILER,$$(CC_$(2)))' \
651         --cxx '$$(call FIND_COMPILER,$$(CXX_$(2)))' \
652         --cflags "$$(CFG_GCCISH_CFLAGS_$(2))" \
653         --llvm-components "$$(LLVM_ALL_COMPONENTS_$(2))" \
654         --llvm-cxxflags "$$(LLVM_CXXFLAGS_$(2))" \
655         $$(CTEST_TESTARGS)
656
657 ifdef CFG_VALGRIND_RPASS
658 ifdef GOOD_VALGRIND_$(2)
659 CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3) += --valgrind-path "$(CFG_VALGRIND_RPASS)"
660 endif
661 endif
662
663 ifndef CFG_DISABLE_VALGRIND_RPASS
664 ifdef GOOD_VALGRIND_$(2)
665 CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3) += --force-valgrind
666 endif
667 endif
668
669 CTEST_DEPS_rpass_$(1)-T-$(2)-H-$(3) = $$(RPASS_TESTS)
670 CTEST_DEPS_rpass-valgrind_$(1)-T-$(2)-H-$(3) = $$(RPASS_VALGRIND_TESTS)
671 CTEST_DEPS_rpass-full_$(1)-T-$(2)-H-$(3) = $$(RPASS_FULL_TESTS) $$(CSREQ$(1)_T_$(3)_H_$(3)) $$(SREQ$(1)_T_$(2)_H_$(3))
672 CTEST_DEPS_rfail-full_$(1)-T-$(2)-H-$(3) = $$(RFAIL_FULL_TESTS) $$(CSREQ$(1)_T_$(3)_H_$(3)) $$(SREQ$(1)_T_$(2)_H_$(3))
673 CTEST_DEPS_cfail-full_$(1)-T-$(2)-H-$(3) = $$(CFAIL_FULL_TESTS) $$(CSREQ$(1)_T_$(3)_H_$(3)) $$(SREQ$(1)_T_$(2)_H_$(3))
674 CTEST_DEPS_rfail_$(1)-T-$(2)-H-$(3) = $$(RFAIL_TESTS)
675 CTEST_DEPS_cfail_$(1)-T-$(2)-H-$(3) = $$(CFAIL_TESTS)
676 CTEST_DEPS_pfail_$(1)-T-$(2)-H-$(3) = $$(PFAIL_TESTS)
677 CTEST_DEPS_debuginfo-gdb_$(1)-T-$(2)-H-$(3) = $$(DEBUGINFO_GDB_TESTS)
678 CTEST_DEPS_debuginfo-lldb_$(1)-T-$(2)-H-$(3) = $$(DEBUGINFO_LLDB_TESTS) \
679                                                $(S)src/etc/lldb_batchmode.py \
680                                                $(S)src/etc/lldb_rust_formatters.py
681 CTEST_DEPS_codegen_$(1)-T-$(2)-H-$(3) = $$(CODEGEN_TESTS)
682 CTEST_DEPS_codegen-units_$(1)-T-$(2)-H-$(3) = $$(CODEGEN_UNITS_TESTS)
683 CTEST_DEPS_incremental_$(1)-T-$(2)-H-$(3) = $$(INCREMENTAL_TESTS)
684 CTEST_DEPS_rmake_$(1)-T-$(2)-H-$(3) = $$(RMAKE_TESTS) \
685         $$(CSREQ$(1)_T_$(3)_H_$(3)) $$(SREQ$(1)_T_$(2)_H_$(3))
686 CTEST_DEPS_ui_$(1)-T-$(2)-H-$(3) = $$(UI_TESTS)
687 CTEST_DEPS_rustdocck_$(1)-T-$(2)-H-$(3) = $$(RUSTDOCCK_TESTS) \
688                 $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
689                 $(S)src/etc/htmldocck.py
690
691 endef
692
693 $(foreach host,$(CFG_HOST), \
694  $(eval $(foreach target,$(CFG_TARGET), \
695   $(eval $(foreach stage,$(STAGES), \
696    $(eval $(call DEF_CTEST_VARS,$(stage),$(target),$(host))))))))
697
698 define DEF_RUN_COMPILETEST
699
700 CTEST_ARGS$(1)-T-$(2)-H-$(3)-$(4) = \
701         $$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
702         --src-base $$(S)src/test/$$(CTEST_SRC_BASE_$(4))/ \
703         --build-base $(3)/test/$$(CTEST_BUILD_BASE_$(4))/ \
704         --mode $$(CTEST_MODE_$(4)) \
705         $$(CTEST_RUNTOOL_$(4))
706
707 check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))
708
709 # CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4)
710 # Goal: leave this variable as empty string if we should run the test.
711 # Otherwise, set it to the reason we are not running the test.
712 # (Encoded as a separate variable because GNU make does not have a
713 # good way to express OR on ifeq commands)
714
715 ifneq ($$(CTEST_DISABLE_$(4)),)
716 # Test suite is disabled for all configured targets.
717 CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4) := $$(CTEST_DISABLE_$(4))
718 else
719 # else, check if non-self-hosted target (i.e. target not-in hosts) ...
720 ifeq ($$(findstring $(2),$$(CFG_HOST)),)
721 # ... if so, then check if this test suite is disabled for non-selfhosts.
722 ifneq ($$(CTEST_DISABLE_NONSELFHOST_$(4)),)
723 # Test suite is disabled for this target.
724 CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4) := $$(CTEST_DISABLE_NONSELFHOST_$(4))
725 endif
726 endif
727 # Neither DISABLE nor DISABLE_NONSELFHOST is set ==> okay, run the test.
728 endif
729
730 ifeq ($$(CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4)),)
731 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
732         export INCLUDE := $$(CFG_MSVC_INCLUDE_PATH_$$(HOST_$(3)))
733 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
734         export LIB := $$(CFG_MSVC_LIB_PATH_$$(HOST_$(3)))
735 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
736                 $$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
737                 $$(CTEST_DEPS_$(4)_$(1)-T-$(2)-H-$(3))
738         @$$(call E, run $(4) [$(2)]: $$<)
739         $$(Q)touch $$@.start_time
740         $$(Q)$$(call CFG_RUN_CTEST_$(2),$(1),$$<,$(3)) \
741                 $$(CTEST_ARGS$(1)-T-$(2)-H-$(3)-$(4)) \
742                 --logfile $$(call TEST_LOG_FILE,$(1),$(2),$(3),$(4)) \
743                 && touch -r $$@.start_time $$@ && rm $$@.start_time
744
745 else
746
747 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)):
748         @$$(call E, run $(4) [$(2)]: $$<)
749         @$$(call E, warning: tests disabled: $$(CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4)))
750         touch $$@
751
752 endif
753
754 endef
755
756 CTEST_NAMES = rpass rpass-valgrind rpass-full rfail-full cfail-full rfail cfail pfail \
757         debuginfo-gdb debuginfo-lldb codegen codegen-units rustdocck incremental \
758         rmake ui
759
760 $(foreach host,$(CFG_HOST), \
761  $(eval $(foreach target,$(CFG_TARGET), \
762   $(eval $(foreach stage,$(STAGES), \
763    $(eval $(foreach name,$(CTEST_NAMES), \
764    $(eval $(call DEF_RUN_COMPILETEST,$(stage),$(target),$(host),$(name))))))))))
765
766 PRETTY_NAMES = pretty-rpass pretty-rpass-valgrind pretty-rpass-full pretty-rfail-full pretty-rfail \
767     pretty-pretty
768 PRETTY_DEPS_pretty-rpass = $(RPASS_TESTS)
769 PRETTY_DEPS_pretty-rpass-valgrind = $(RPASS_VALGRIND_TESTS)
770 PRETTY_DEPS_pretty-rpass-full = $(RPASS_FULL_TESTS)
771 PRETTY_DEPS_pretty-rfail-full = $(RFAIL_FULL_TESTS)
772 PRETTY_DEPS_pretty-rfail = $(RFAIL_TESTS)
773 PRETTY_DEPS_pretty-pretty = $(PRETTY_TESTS)
774 PRETTY_DIRNAME_pretty-rpass = run-pass
775 PRETTY_DIRNAME_pretty-rpass-valgrind = run-pass-valgrind
776 PRETTY_DIRNAME_pretty-rpass-full = run-pass-fulldeps
777 PRETTY_DIRNAME_pretty-rfail-full = run-fail-fulldeps
778 PRETTY_DIRNAME_pretty-rfail = run-fail
779 PRETTY_DIRNAME_pretty-pretty = pretty
780
781 define DEF_PRETTY_FULLDEPS
782 PRETTY_DEPS$(1)_T_$(2)_H_$(3)_pretty-rpass-full = $$(CSREQ$(1)_T_$(3)_H_$(3))
783 PRETTY_DEPS$(1)_T_$(2)_H_$(3)_pretty-rfail-full = $$(CSREQ$(1)_T_$(3)_H_$(3))
784 endef
785
786 $(foreach host,$(CFG_HOST), \
787  $(foreach target,$(CFG_TARGET), \
788   $(foreach stage,$(STAGES), \
789    $(eval $(call DEF_PRETTY_FULLDEPS,$(stage),$(target),$(host))))))
790
791 define DEF_RUN_PRETTY_TEST
792
793 PRETTY_ARGS$(1)-T-$(2)-H-$(3)-$(4) = \
794                 $$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
795         --src-base $$(S)src/test/$$(PRETTY_DIRNAME_$(4))/ \
796         --build-base $(3)/test/$$(PRETTY_DIRNAME_$(4))/ \
797         --mode pretty
798
799 check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))
800
801 $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
802                 $$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
803                 $$(PRETTY_DEPS_$(4)) \
804                 $$(PRETTY_DEPS$(1)_T_$(2)_H_$(3)_$(4))
805         @$$(call E, run pretty-rpass [$(2)]: $$<)
806         $$(Q)touch $$@.start_time
807         $$(Q)$$(call CFG_RUN_CTEST_$(2),$(1),$$<,$(3)) \
808                 $$(PRETTY_ARGS$(1)-T-$(2)-H-$(3)-$(4)) \
809                 --logfile $$(call TEST_LOG_FILE,$(1),$(2),$(3),$(4)) \
810                 && touch -r $$@.start_time $$@ && rm $$@.start_time
811
812 endef
813
814 $(foreach host,$(CFG_HOST), \
815  $(foreach target,$(CFG_TARGET), \
816   $(foreach stage,$(STAGES), \
817    $(foreach pretty-name,$(PRETTY_NAMES), \
818     $(eval $(call DEF_RUN_PRETTY_TEST,$(stage),$(target),$(host),$(pretty-name)))))))
819
820
821 ######################################################################
822 # Crate & freestanding documentation tests
823 ######################################################################
824
825 define DEF_RUSTDOC
826 RUSTDOC_EXE_$(1)_T_$(2)_H_$(3) := $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3))
827 RUSTDOC_$(1)_T_$(2)_H_$(3) := $$(RPATH_VAR$(1)_T_$(2)_H_$(3)) $$(RUSTDOC_EXE_$(1)_T_$(2)_H_$(3))
828 endef
829
830 $(foreach host,$(CFG_HOST), \
831  $(foreach target,$(CFG_TARGET), \
832   $(foreach stage,$(STAGES), \
833    $(eval $(call DEF_RUSTDOC,$(stage),$(target),$(host))))))
834
835 # Freestanding
836
837 define DEF_DOC_TEST
838
839 check-stage$(1)-T-$(2)-H-$(3)-doc-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4))
840
841 # If NO_REBUILD is set then break the dependencies on everything but
842 # the source files so we can test documentation without rebuilding
843 # rustdoc etc.
844 ifeq ($(NO_REBUILD),)
845 DOCTESTDEP_$(1)_$(2)_$(3)_$(4) = \
846         $$(DOCFILE_$(4)) \
847         $$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
848         $$(RUSTDOC_EXE_$(1)_T_$(2)_H_$(3))
849 else
850 DOCTESTDEP_$(1)_$(2)_$(3)_$(4) = $$(DOCFILE_$(4))
851 endif
852
853 ifeq ($(2),$$(CFG_BUILD))
854 $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4)): $$(DOCTESTDEP_$(1)_$(2)_$(3)_$(4))
855         @$$(call E, run doc-$(4) [$(2)])
856         $$(Q)touch $$@.start_time
857         $$(Q)$$(RUSTDOC_$(1)_T_$(2)_H_$(3)) --cfg dox --test $$< \
858                 --test-args "$$(TESTARGS)" && \
859                 touch -r $$@.start_time $$@ && rm $$@.start_time
860 else
861 $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4)):
862         touch $$@
863 endif
864 endef
865
866 $(foreach host,$(CFG_HOST), \
867  $(foreach target,$(CFG_TARGET), \
868   $(foreach stage,$(STAGES), \
869    $(foreach docname,$(DOC_NAMES), \
870     $(eval $(call DEF_DOC_TEST,$(stage),$(target),$(host),$(docname)))))))
871
872 # Crates
873
874 define DEF_CRATE_DOC_TEST
875
876 # If NO_REBUILD is set then break the dependencies on everything but
877 # the source files so we can test crate documentation without
878 # rebuilding any of the parent crates.
879 ifeq ($(NO_REBUILD),)
880 CRATEDOCTESTDEP_$(1)_$(2)_$(3)_$(4) = \
881         $$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
882         $$(CRATE_FULLDEPS_$(1)_T_$(2)_H_$(3)_$(4)) \
883         $$(RUSTDOC_EXE_$(1)_T_$(2)_H_$(3))
884 else
885 CRATEDOCTESTDEP_$(1)_$(2)_$(3)_$(4) = $$(RSINPUTS_$(4))
886 endif
887
888 check-stage$(1)-T-$(2)-H-$(3)-doc-crate-$(4)-exec: \
889         $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-crate-$(4))
890
891 ifeq ($(2),$$(CFG_BUILD))
892 $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-crate-$(4)): $$(CRATEDOCTESTDEP_$(1)_$(2)_$(3)_$(4))
893         @$$(call E, run doc-crate-$(4) [$(2)])
894         $$(Q)touch $$@.start_time
895         $$(Q)CFG_LLVM_LINKAGE_FILE=$$(LLVM_LINKAGE_PATH_$(2)) \
896             $$(RUSTDOC_$(1)_T_$(2)_H_$(3)) --test --cfg dox \
897                 $$(CRATEFILE_$(4)) --test-args "$$(TESTARGS)" && \
898                 touch -r $$@.start_time $$@ && rm $$@.start_time
899 else
900 $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-crate-$(4)):
901         touch $$@
902 endif
903
904 endef
905
906 $(foreach host,$(CFG_HOST), \
907  $(foreach target,$(CFG_TARGET), \
908   $(foreach stage,$(STAGES), \
909    $(foreach crate,$(TEST_DOC_CRATES), \
910     $(eval $(call DEF_CRATE_DOC_TEST,$(stage),$(target),$(host),$(crate)))))))
911
912 define DEF_DOC_TEST_ERROR_INDEX
913
914 check-stage$(1)-T-$(2)-H-$(3)-doc-error-index-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-error-index)
915
916 ifeq ($(2),$$(CFG_BUILD))
917 $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-error-index): \
918                 $$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
919                 doc/error-index.md
920         $$(Q)touch $$@.start_time
921         $$(RUSTDOC_$(1)_T_$(2)_H_$(3)) --test doc/error-index.md
922         $$(Q)touch -r $$@.start_time $$@ && rm $$@.start_time
923 else
924 $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-error-index):
925         $$(Q)touch $$@
926 endif
927 endef
928
929 $(foreach host,$(CFG_HOST), \
930  $(foreach target,$(CFG_TARGET), \
931   $(foreach stage,$(STAGES), \
932    $(eval $(call DEF_DOC_TEST_ERROR_INDEX,$(stage),$(target),$(host))))))
933
934 ######################################################################
935 # Shortcut rules
936 ######################################################################
937
938 TEST_GROUPS = \
939         crates \
940         $(foreach crate,$(TEST_CRATES),$(crate)) \
941         $(foreach crate,$(TEST_DOC_CRATES),doc-crate-$(crate)) \
942         rpass \
943         rpass-valgrind \
944         rpass-full \
945         rfail-full \
946         cfail-full \
947         rfail \
948         cfail \
949         pfail \
950         rmake \
951         rustdocck \
952         debuginfo-gdb \
953         debuginfo-lldb \
954         codegen \
955         codegen-units \
956         incremental \
957         ui \
958         doc \
959         $(foreach docname,$(DOC_NAMES),doc-$(docname)) \
960         pretty \
961         pretty-rpass \
962         pretty-rpass-valgrind \
963         pretty-rpass-full \
964         pretty-rfail-full \
965         pretty-rfail \
966         pretty-pretty \
967         $(NULL)
968
969 define DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST
970 check-stage$(1)-T-$(2)-H-$(3): check-stage$(1)-T-$(2)-H-$(3)-exec
971 endef
972
973 $(foreach stage,$(STAGES), \
974  $(foreach target,$(CFG_TARGET), \
975   $(foreach host,$(CFG_HOST), \
976    $(eval $(call DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST,$(stage),$(target),$(host))))))
977
978 define DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST_AND_GROUP
979 check-stage$(1)-T-$(2)-H-$(3)-$(4): check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec
980 endef
981
982 $(foreach stage,$(STAGES), \
983  $(foreach target,$(CFG_TARGET), \
984   $(foreach host,$(CFG_HOST), \
985    $(foreach group,$(TEST_GROUPS), \
986     $(eval $(call DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST_AND_GROUP,$(stage),$(target),$(host),$(group)))))))
987
988 define DEF_CHECK_FOR_STAGE
989 check-stage$(1): check-stage$(1)-H-$$(CFG_BUILD)
990 check-stage$(1)-H-all: $$(foreach target,$$(CFG_TARGET), \
991                            check-stage$(1)-H-$$(target))
992 endef
993
994 $(foreach stage,$(STAGES), \
995  $(eval $(call DEF_CHECK_FOR_STAGE,$(stage))))
996
997 define DEF_CHECK_FOR_STAGE_AND_GROUP
998 check-stage$(1)-$(2): check-stage$(1)-H-$$(CFG_BUILD)-$(2)
999 check-stage$(1)-H-all-$(2): $$(foreach target,$$(CFG_TARGET), \
1000                                check-stage$(1)-H-$$(target)-$(2))
1001 endef
1002
1003 $(foreach stage,$(STAGES), \
1004  $(foreach group,$(TEST_GROUPS), \
1005   $(eval $(call DEF_CHECK_FOR_STAGE_AND_GROUP,$(stage),$(group)))))
1006
1007
1008 define DEF_CHECK_FOR_STAGE_AND_HOSTS
1009 check-stage$(1)-H-$(2): $$(foreach target,$$(CFG_TARGET), \
1010                            check-stage$(1)-T-$$(target)-H-$(2))
1011 endef
1012
1013 $(foreach stage,$(STAGES), \
1014  $(foreach host,$(CFG_HOST), \
1015   $(eval $(call DEF_CHECK_FOR_STAGE_AND_HOSTS,$(stage),$(host)))))
1016
1017 define DEF_CHECK_FOR_STAGE_AND_HOSTS_AND_GROUP
1018 check-stage$(1)-H-$(2)-$(3): $$(foreach target,$$(CFG_TARGET), \
1019                                 check-stage$(1)-T-$$(target)-H-$(2)-$(3))
1020 endef
1021
1022 $(foreach stage,$(STAGES), \
1023  $(foreach host,$(CFG_HOST), \
1024   $(foreach group,$(TEST_GROUPS), \
1025    $(eval $(call DEF_CHECK_FOR_STAGE_AND_HOSTS_AND_GROUP,$(stage),$(host),$(group))))))
1026
1027 define DEF_CHECK_DOC_FOR_STAGE
1028 check-stage$(1)-docs: $$(foreach docname,$$(DOC_NAMES), \
1029                        check-stage$(1)-T-$$(CFG_BUILD)-H-$$(CFG_BUILD)-doc-$$(docname)) \
1030                      $$(foreach crate,$$(TEST_DOC_CRATES), \
1031                        check-stage$(1)-T-$$(CFG_BUILD)-H-$$(CFG_BUILD)-doc-crate-$$(crate)) \
1032                      check-stage$(1)-T-$$(CFG_BUILD)-H-$$(CFG_BUILD)-doc-error-index-exec
1033 endef
1034
1035 $(foreach stage,$(STAGES), \
1036  $(eval $(call DEF_CHECK_DOC_FOR_STAGE,$(stage))))
1037
1038 define DEF_CHECK_CRATE
1039 check-$(1): check-stage2-T-$$(CFG_BUILD)-H-$$(CFG_BUILD)-$(1)-exec
1040 endef
1041
1042 $(foreach crate,$(TEST_CRATES), \
1043  $(eval $(call DEF_CHECK_CRATE,$(crate))))