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