tests.mk 30.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
# Copyright 2012 The Rust Project Developers. See the COPYRIGHT
# file at the top-level directory of this distribution and at
# http://rust-lang.org/COPYRIGHT.
#
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
# option. This file may not be copied, modified, or distributed
# except according to those terms.

11

G
Graydon Hoare 已提交
12
######################################################################
13
# Test variables
G
Graydon Hoare 已提交
14 15
######################################################################

16
# The names of crates that must be tested
17 18 19
TEST_TARGET_CRATES = $(TARGET_CRATES)
TEST_DOC_CRATES = $(DOC_CRATES)
TEST_HOST_CRATES = $(HOST_CRATES)
20
TEST_CRATES = $(TEST_TARGET_CRATES) $(TEST_HOST_CRATES)
G
Graydon Hoare 已提交
21

22 23 24
######################################################################
# Environment configuration
######################################################################
25

B
Brian Anderson 已提交
26 27 28 29 30
# The arguments to all test runners
ifdef TESTNAME
  TESTARGS += $(TESTNAME)
endif

31
ifdef CHECK_IGNORED
B
Brian Anderson 已提交
32 33 34
  TESTARGS += --ignored
endif

35
TEST_BENCH = --bench
36

B
Brian Anderson 已提交
37 38 39
# Arguments to the cfail/rfail/rpass/bench tests
ifdef CFG_VALGRIND
  CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
40
  TEST_BENCH =
B
Brian Anderson 已提交
41
endif
42

43 44
ifdef NO_BENCH
  TEST_BENCH =
B
Brian Anderson 已提交
45
endif
46

47 48 49 50 51
# Arguments to the perf tests
ifdef CFG_PERF_TOOL
  CTEST_PERF_RUNTOOL = --runtool "$(CFG_PERF_TOOL)"
endif

B
Brian Anderson 已提交
52
CTEST_TESTARGS := $(TESTARGS)
G
Graydon Hoare 已提交
53

B
Brian Anderson 已提交
54 55 56
ifdef VERBOSE
  CTEST_TESTARGS += --verbose
endif
57

58 59 60 61 62 63 64
# If we're running perf then set this environment variable
# to put the benchmarks into 'hard mode'
ifeq ($(MAKECMDGOALS),perf)
  RUST_BENCH=1
  export RUST_BENCH
endif

65 66
TEST_LOG_FILE=tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).log
TEST_OK_FILE=tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).ok
67

68 69 70 71 72
TEST_RATCHET_FILE=tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4)-metrics.json
TEST_RATCHET_NOISE_PERCENT=10.0

# Whether to ratchet or merely save benchmarks
ifdef CFG_RATCHET_BENCH
73
CRATE_TEST_EXTRA_ARGS=\
74
  --test $(TEST_BENCH) \
75 76 77
  --ratchet-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4)) \
  --ratchet-noise-percent $(TEST_RATCHET_NOISE_PERCENT)
else
78
CRATE_TEST_EXTRA_ARGS=\
79
  --test $(TEST_BENCH) \
80 81 82
  --save-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4))
endif

83 84 85 86 87 88 89 90
# If we're sharding the testsuite between parallel testers,
# pass this argument along to the compiletest and crate test
# invocations.
ifdef TEST_SHARD
  CTEST_TESTARGS += --test-shard=$(TEST_SHARD)
  CRATE_TEST_EXTRA_ARGS += --test-shard=$(TEST_SHARD)
endif

91 92 93 94 95 96 97
define DEF_TARGET_COMMANDS

ifdef CFG_UNIXY_$(1)
  CFG_RUN_TEST_$(1)=$$(call CFG_RUN_$(1),,$$(CFG_VALGRIND) $$(1))
endif

ifdef CFG_WINDOWSY_$(1)
C
Chris Morgan 已提交
98
  CFG_TESTLIB_$(1)=$$(CFG_BUILD_DIR)$$(2)/$$(strip \
99
   $$(if $$(findstring stage0,$$(1)), \
100
       stage0/$$(CFG_LIBDIR_RELATIVE), \
101
      $$(if $$(findstring stage1,$$(1)), \
102
           stage1/$$(CFG_LIBDIR_RELATIVE), \
103
          $$(if $$(findstring stage2,$$(1)), \
104
               stage2/$$(CFG_LIBDIR_RELATIVE), \
105
               $$(if $$(findstring stage3,$$(1)), \
106
                    stage3/$$(CFG_LIBDIR_RELATIVE), \
107
               )))))/$$(CFG_RUSTLIBDIR)/$$(CFG_BUILD)/lib
108 109 110 111 112
  CFG_RUN_TEST_$(1)=$$(call CFG_RUN_$(1),$$(call CFG_TESTLIB_$(1),$$(1),$$(3)),$$(1))
endif

# Run the compiletest runner itself under valgrind
ifdef CTEST_VALGRIND
113 114
CFG_RUN_CTEST_$(1)=$$(RPATH_VAR$$(1)_T_$$(3)_H_$$(3)) \
      $$(call CFG_RUN_TEST_$$(CFG_BUILD),$$(2),$$(3))
115
else
116 117
CFG_RUN_CTEST_$(1)=$$(RPATH_VAR$$(1)_T_$$(3)_H_$$(3)) \
      $$(call CFG_RUN_$$(CFG_BUILD),$$(TLIB$$(1)_T_$$(3)_H_$$(3)),$$(2))
118 119 120 121
endif

endef

H
Heather 已提交
122
$(foreach target,$(CFG_TARGET), \
123 124
  $(eval $(call DEF_TARGET_COMMANDS,$(target))))

D
Daniel Micay 已提交
125
# Target platform specific variables
126
# for arm-linux-androidabi
127 128
define DEF_ADB_DEVICE_STATUS
CFG_ADB_DEVICE_STATUS=$(1)
129 130
endef

H
Heather 已提交
131
$(foreach target,$(CFG_TARGET), \
132 133
  $(if $(findstring $(target),"arm-linux-androideabi"), \
    $(if $(findstring adb,$(CFG_ADB)), \
134
      $(if $(findstring device,$(shell $(CFG_ADB) devices 2>/dev/null | grep -E '^[:_A-Za-z0-9-]+[[:blank:]]+device')), \
135 136 137 138
        $(info check: android device attached) \
        $(eval $(call DEF_ADB_DEVICE_STATUS, true)), \
        $(info check: android device not attached) \
        $(eval $(call DEF_ADB_DEVICE_STATUS, false)) \
139
      ), \
140 141
      $(info check: adb not found) \
      $(eval $(call DEF_ADB_DEVICE_STATUS, false)) \
142
    ), \
143 144 145
  ) \
)

146 147
ifeq ($(CFG_ADB_DEVICE_STATUS),true)
CFG_ADB_TEST_DIR=/data/tmp
148

149
$(info check: android device test dir $(CFG_ADB_TEST_DIR) ready \
150 151 152 153 154
 $(shell $(CFG_ADB) remount 1>/dev/null) \
 $(shell $(CFG_ADB) shell rm -r $(CFG_ADB_TEST_DIR) >/dev/null) \
 $(shell $(CFG_ADB) shell mkdir $(CFG_ADB_TEST_DIR)) \
 $(shell $(CFG_ADB) shell mkdir $(CFG_ADB_TEST_DIR)/tmp) \
 $(shell $(CFG_ADB) push $(S)src/etc/adb_run_wrapper.sh $(CFG_ADB_TEST_DIR) 1>/dev/null) \
A
Alex Crichton 已提交
155 156 157
 $(foreach crate,$(TARGET_CRATES),\
    $(shell $(CFG_ADB) push $(TLIB2_T_arm-linux-androideabi_H_$(CFG_BUILD))/$(call CFG_LIB_GLOB_arm-linux-androideabi,$(crate)) \
                    $(CFG_ADB_TEST_DIR)))\
158
 )
159 160
else
CFG_ADB_TEST_DIR=
161
endif
162 163


B
Brian Anderson 已提交
164 165 166 167
######################################################################
# Main test targets
######################################################################

H
Huon Wilson 已提交
168 169 170
check: cleantmptestlogs cleantestlibs tidy check-notidy

check-notidy: cleantmptestlogs cleantestlibs all check-stage2
171 172 173
	$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log

check-lite: cleantestlibs cleantmptestlogs \
174 175
	$(foreach crate,$(TARGET_CRATES),check-stage2-$(crate)) \
	check-stage2-rpass \
A
Alex Crichton 已提交
176
	check-stage2-rfail check-stage2-cfail check-stage2-rmake
177 178
	$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log

179 180 181 182
check-ref: cleantestlibs cleantmptestlogs check-stage2-rpass \
	check-stage2-rfail check-stage2-cfail check-stage2-rmake
	$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log

B
Brian Anderson 已提交
183 184 185
check-docs: cleantestlibs cleantmptestlogs check-stage2-docs
	$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log

186 187
.PHONY: cleantmptestlogs cleantestlibs

188 189
cleantmptestlogs:
	$(Q)rm -f tmp/*.log
190

191
cleantestlibs:
H
Heather 已提交
192
	$(Q)find $(CFG_BUILD)/test \
193 194 195 196 197 198 199
         -name '*.[odasS]' -o \
         -name '*.so' -o      \
         -name '*.dylib' -o   \
         -name '*.dll' -o     \
         -name '*.def' -o     \
         -name '*.bc' -o      \
         -name '*.dSYM' -o    \
200
         -name '*.libaux' -o      \
201
         -name '*.out' -o     \
B
Brian Leibig 已提交
202 203
         -name '*.err' -o     \
	 -name '*.debugger.script' \
204
         | xargs rm -rf
205

206

207 208 209
######################################################################
# Tidy
######################################################################
B
Brian Anderson 已提交
210

211
ifdef CFG_NOTIDY
B
Brian Anderson 已提交
212
tidy:
213
else
214 215 216 217

ALL_CS := $(wildcard $(S)src/rt/*.cpp \
                     $(S)src/rt/*/*.cpp \
                     $(S)src/rt/*/*/*.cpp \
218
                     $(S)src/rustllvm/*.cpp)
219
ALL_CS := $(filter-out $(S)src/rt/miniz.cpp \
A
Alex Crichton 已提交
220 221
		       $(wildcard $(S)src/rt/sundown/src/*.c) \
		       $(wildcard $(S)src/rt/sundown/html/*.c) \
222 223 224 225
	,$(ALL_CS))
ALL_HS := $(wildcard $(S)src/rt/*.h \
                     $(S)src/rt/*/*.h \
                     $(S)src/rt/*/*/*.h \
226
                     $(S)src/rustllvm/*.h)
227 228 229 230 231
ALL_HS := $(filter-out $(S)src/rt/vg/valgrind.h \
                       $(S)src/rt/vg/memcheck.h \
                       $(S)src/rt/msvc/typeof.h \
                       $(S)src/rt/msvc/stdint.h \
                       $(S)src/rt/msvc/inttypes.h \
A
Alex Crichton 已提交
232 233
		       $(wildcard $(S)src/rt/sundown/src/*.h) \
		       $(wildcard $(S)src/rt/sundown/html/*.h) \
234 235
	,$(ALL_HS))

236
# Run the tidy script in multiple parts to avoid huge 'echo' commands
237 238
tidy:
		@$(call E, check: formatting)
239
		$(Q)find $(S)src -name '*.r[sc]' \
240 241
		| grep '^$(S)src/libuv' -v \
		| grep '^$(S)src/llvm' -v \
242
		| grep '^$(S)src/gyp' -v \
243
		| grep '^$(S)src/libbacktrace' -v \
244
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
245
		$(Q)find $(S)src/etc -name '*.py' \
246
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
247 248 249 250 251 252 253 254 255 256
		$(Q)find $(S)src/doc -name '*.js' \
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
		$(Q)find $(S)src/etc -name '*.sh' \
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
		$(Q)find $(S)src/etc -name '*.pl' \
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
		$(Q)find $(S)src/etc -name '*.c' \
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
		$(Q)find $(S)src/etc -name '*.h' \
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
257
		$(Q)echo $(ALL_CS) \
258
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
259
		$(Q)echo $(ALL_HS) \
260
		| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
261 262 263 264 265 266 267
		$(Q)find $(S)src -type f -perm +111 \
		    -not -name '*.rs' -and -not -name '*.py' \
		    -and -not -name '*.sh' \
		| grep '^$(S)src/llvm' -v \
		| grep '^$(S)src/libuv' -v \
		| grep '^$(S)src/gyp' -v \
		| grep '^$(S)src/etc' -v \
268
		| grep '^$(S)src/doc' -v \
269
		| grep '^$(S)src/compiler-rt' -v \
270
		| grep '^$(S)src/libbacktrace' -v \
271
		| xargs $(CFG_PYTHON) $(S)src/etc/check-binaries.py
272

273
endif
274

275

B
Brian Anderson 已提交
276
######################################################################
277
# Sets of tests
B
Brian Anderson 已提交
278 279
######################################################################

280 281 282 283 284 285 286
define DEF_TEST_SETS

check-stage$(1)-T-$(2)-H-$(3)-exec:     				\
	check-stage$(1)-T-$(2)-H-$(3)-rpass-exec			\
	check-stage$(1)-T-$(2)-H-$(3)-rfail-exec			\
	check-stage$(1)-T-$(2)-H-$(3)-cfail-exec			\
	check-stage$(1)-T-$(2)-H-$(3)-rpass-full-exec			\
A
Alex Crichton 已提交
287 288
	check-stage$(1)-T-$(2)-H-$(3)-rmake-exec			\
        check-stage$(1)-T-$(2)-H-$(3)-crates-exec                       \
289
        check-stage$(1)-T-$(2)-H-$(3)-doc-crates-exec                   \
290
	check-stage$(1)-T-$(2)-H-$(3)-bench-exec			\
291
	check-stage$(1)-T-$(2)-H-$(3)-debuginfo-exec \
292
	check-stage$(1)-T-$(2)-H-$(3)-codegen-exec \
293 294 295
	check-stage$(1)-T-$(2)-H-$(3)-doc-exec \
	check-stage$(1)-T-$(2)-H-$(3)-pretty-exec

296 297
# Only test the compiler-dependent crates when the target is
# able to build a compiler (when the target triple is in the set of host triples)
H
Heather 已提交
298
ifneq ($$(findstring $(2),$$(CFG_HOST)),)
299

300 301 302 303
check-stage$(1)-T-$(2)-H-$(3)-crates-exec: \
	$$(foreach crate,$$(TEST_CRATES), \
           check-stage$(1)-T-$(2)-H-$(3)-$$(crate)-exec)

304 305 306 307 308 309 310 311
else

check-stage$(1)-T-$(2)-H-$(3)-crates-exec: \
	$$(foreach crate,$$(TEST_TARGET_CRATES), \
           check-stage$(1)-T-$(2)-H-$(3)-$$(crate)-exec)

endif

312 313
check-stage$(1)-T-$(2)-H-$(3)-doc-crates-exec: \
        $$(foreach crate,$$(TEST_DOC_CRATES), \
314
           check-stage$(1)-T-$(2)-H-$(3)-doc-crate-$$(crate)-exec)
315

316
check-stage$(1)-T-$(2)-H-$(3)-doc-exec: \
317
        $$(foreach docname,$$(DOCS), \
318 319 320 321 322 323 324 325
           check-stage$(1)-T-$(2)-H-$(3)-doc-$$(docname)-exec)

check-stage$(1)-T-$(2)-H-$(3)-pretty-exec: \
	check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass-exec	\
	check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass-full-exec	\
	check-stage$(1)-T-$(2)-H-$(3)-pretty-rfail-exec	\
	check-stage$(1)-T-$(2)-H-$(3)-pretty-bench-exec	\
	check-stage$(1)-T-$(2)-H-$(3)-pretty-pretty-exec
326

B
Brian Anderson 已提交
327 328
endef

H
Heather 已提交
329 330
$(foreach host,$(CFG_HOST), \
 $(foreach target,$(CFG_TARGET), \
331 332 333
  $(foreach stage,$(STAGES), \
    $(eval $(call DEF_TEST_SETS,$(stage),$(target),$(host))))))

B
Brian Anderson 已提交
334

335
######################################################################
336
# Crate testing
337 338
######################################################################

339
define TEST_RUNNER
340

341 342 343
# If NO_REBUILD is set then break the dependencies on everything but
# the source files so we can test crates without rebuilding any of the
# parent crates.
344
ifeq ($(NO_REBUILD),)
345
TESTDEP_$(1)_$(2)_$(3)_$(4) = $$(SREQ$(1)_T_$(2)_H_$(3)) \
A
Alex Crichton 已提交
346
			    $$(foreach crate,$$(TARGET_CRATES),\
347 348
				$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(crate)) \
				$$(CRATE_FULLDEPS_$(1)_T_$(2)_H_$(3)_$(4))
349
else
350
TESTDEP_$(1)_$(2)_$(3)_$(4) = $$(RSINPUTS_$(4))
351 352
endif

353 354
$(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2)): CFG_COMPILER = $(2)
$(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2)):				\
355 356
		$$(CRATEFILE_$(4)) \
		$$(TESTDEP_$(1)_$(2)_$(3)_$(4))
357
	@$$(call E, oxidize: $$@)
358 359 360
	$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test	\
		-L "$$(RT_OUTPUT_DIR_$(2))"		\
		-L "$$(LLVM_LIBDIR_$(2))"
361

362 363
endef

H
Heather 已提交
364 365
$(foreach host,$(CFG_HOST), \
 $(eval $(foreach target,$(CFG_TARGET), \
366
  $(eval $(foreach stage,$(STAGES), \
367 368
   $(eval $(foreach crate,$(TEST_CRATES), \
    $(eval $(call TEST_RUNNER,$(stage),$(target),$(host),$(crate))))))))))
369 370

define DEF_TEST_CRATE_RULES
371 372
check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))

373 374
check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))

375
$$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
A
Alex Crichton 已提交
376
		$(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2))
377
	@$$(call E, run: $$<)
378 379 380 381
	$$(Q)$$(call CFG_RUN_TEST_$(2),$$<,$(2),$(3)) $$(TESTARGS) \
	    --logfile $$(call TEST_LOG_FILE,$(1),$(2),$(3),$(4)) \
	    $$(call CRATE_TEST_EXTRA_ARGS,$(1),$(2),$(3),$(4)) \
	    && touch $$@
382
endef
383

384 385 386 387
define DEF_TEST_CRATE_RULES_arm-linux-androideabi
check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))

$$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
A
Alex Crichton 已提交
388
		$(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2))
389
	@$$(call E, run: $$< via adb)
390 391
	$$(Q)$(CFG_ADB) push $$< $(CFG_ADB_TEST_DIR)
	$$(Q)$(CFG_ADB) shell '(cd $(CFG_ADB_TEST_DIR); LD_LIBRARY_PATH=. \
392
		./$$(notdir $$<) \
393
		--logfile $(CFG_ADB_TEST_DIR)/check-stage$(1)-T-$(2)-H-$(3)-$(4).log \
394
		$$(call CRATE_TEST_EXTRA_ARGS,$(1),$(2),$(3),$(4)) $(TESTARGS))' \
395
		> tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp
396 397 398 399 400
	$$(Q)cat tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp
	$$(Q)touch tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).log
	$$(Q)$(CFG_ADB) pull $(CFG_ADB_TEST_DIR)/check-stage$(1)-T-$(2)-H-$(3)-$(4).log tmp/
	$$(Q)$(CFG_ADB) shell rm $(CFG_ADB_TEST_DIR)/check-stage$(1)-T-$(2)-H-$(3)-$(4).log
	$$(Q)$(CFG_ADB) pull $(CFG_ADB_TEST_DIR)/$$(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4)) tmp/
401 402 403 404 405 406 407 408 409 410 411 412 413 414
	@if grep -q "result: ok" tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp; \
	then \
		rm tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp; \
		touch $$@; \
	else \
		rm tmp/check-stage$(1)-T-$(2)-H-$(3)-$(4).tmp; \
		exit 101; \
	fi
endef

define DEF_TEST_CRATE_RULES_null
check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))

$$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
A
Alex Crichton 已提交
415
		$(3)/stage$(1)/test/$(4)test-$(2)$$(X_$(2))
416 417
	@$$(call E, failing: no device for $$< )
	false
418 419
endef

H
Heather 已提交
420 421
$(foreach host,$(CFG_HOST), \
 $(foreach target,$(CFG_TARGET), \
422 423
  $(foreach stage,$(STAGES), \
   $(foreach crate, $(TEST_CRATES), \
H
Heather 已提交
424
    $(if $(findstring $(target),$(CFG_BUILD)), \
425 426
     $(eval $(call DEF_TEST_CRATE_RULES,$(stage),$(target),$(host),$(crate))), \
     $(if $(findstring $(target),"arm-linux-androideabi"), \
427
      $(if $(findstring $(CFG_ADB_DEVICE_STATUS),"true"), \
428 429 430
       $(eval $(call DEF_TEST_CRATE_RULES_arm-linux-androideabi,$(stage),$(target),$(host),$(crate))), \
       $(eval $(call DEF_TEST_CRATE_RULES_null,$(stage),$(target),$(host),$(crate))) \
      ), \
431
      $(eval $(call DEF_TEST_CRATE_RULES,$(stage),$(target),$(host),$(crate))) \
D
Daniel Micay 已提交
432
     ))))))
433

434 435 436 437 438 439 440 441 442 443 444 445
######################################################################
# Rules for the compiletest tests (rpass, rfail, etc.)
######################################################################

RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc)
RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs)
RPASS_FULL_RC := $(wildcard $(S)src/test/run-pass-fulldeps/*.rc)
RPASS_FULL_RS := $(wildcard $(S)src/test/run-pass-fulldeps/*.rs)
RFAIL_RC := $(wildcard $(S)src/test/run-fail/*.rc)
RFAIL_RS := $(wildcard $(S)src/test/run-fail/*.rs)
CFAIL_RC := $(wildcard $(S)src/test/compile-fail/*.rc)
CFAIL_RS := $(wildcard $(S)src/test/compile-fail/*.rs)
446
BENCH_RS := $(wildcard $(S)src/test/bench/*.rs)
447
PRETTY_RS := $(wildcard $(S)src/test/pretty/*.rs)
B
Brian Anderson 已提交
448
DEBUGINFO_RS := $(wildcard $(S)src/test/debug-info/*.rs)
449 450
CODEGEN_RS := $(wildcard $(S)src/test/codegen/*.rs)
CODEGEN_CC := $(wildcard $(S)src/test/codegen/*.cc)
451

452 453
# perf tests are the same as bench tests only they run under
# a performance monitor.
454
PERF_RS := $(wildcard $(S)src/test/bench/*.rs)
455

456 457 458 459 460 461 462
RPASS_TESTS := $(RPASS_RC) $(RPASS_RS)
RPASS_FULL_TESTS := $(RPASS_FULL_RC) $(RPASS_FULL_RS)
RFAIL_TESTS := $(RFAIL_RC) $(RFAIL_RS)
CFAIL_TESTS := $(CFAIL_RC) $(CFAIL_RS)
BENCH_TESTS := $(BENCH_RS)
PERF_TESTS := $(PERF_RS)
PRETTY_TESTS := $(PRETTY_RS)
B
Brian Leibig 已提交
463
DEBUGINFO_TESTS := $(DEBUGINFO_RS)
464
CODEGEN_TESTS := $(CODEGEN_RS) $(CODEGEN_CC)
B
Brian Anderson 已提交
465

466 467 468 469
CTEST_SRC_BASE_rpass = run-pass
CTEST_BUILD_BASE_rpass = run-pass
CTEST_MODE_rpass = run-pass
CTEST_RUNTOOL_rpass = $(CTEST_RUNTOOL)
B
Brian Anderson 已提交
470

471 472
CTEST_SRC_BASE_rpass-full = run-pass-fulldeps
CTEST_BUILD_BASE_rpass-full = run-pass-fulldeps
473 474 475 476 477 478 479 480 481 482 483 484 485
CTEST_MODE_rpass-full = run-pass
CTEST_RUNTOOL_rpass-full = $(CTEST_RUNTOOL)

CTEST_SRC_BASE_rfail = run-fail
CTEST_BUILD_BASE_rfail = run-fail
CTEST_MODE_rfail = run-fail
CTEST_RUNTOOL_rfail = $(CTEST_RUNTOOL)

CTEST_SRC_BASE_cfail = compile-fail
CTEST_BUILD_BASE_cfail = compile-fail
CTEST_MODE_cfail = compile-fail
CTEST_RUNTOOL_cfail = $(CTEST_RUNTOOL)

486
CTEST_SRC_BASE_bench = bench
487 488 489 490 491 492 493 494 495
CTEST_BUILD_BASE_bench = bench
CTEST_MODE_bench = run-pass
CTEST_RUNTOOL_bench = $(CTEST_RUNTOOL)

CTEST_SRC_BASE_perf = bench
CTEST_BUILD_BASE_perf = perf
CTEST_MODE_perf = run-pass
CTEST_RUNTOOL_perf = $(CTEST_PERF_RUNTOOL)

B
Brian Leibig 已提交
496 497 498 499 500
CTEST_SRC_BASE_debuginfo = debug-info
CTEST_BUILD_BASE_debuginfo = debug-info
CTEST_MODE_debuginfo = debug-info
CTEST_RUNTOOL_debuginfo = $(CTEST_RUNTOOL)

501 502 503 504 505
CTEST_SRC_BASE_codegen = codegen
CTEST_BUILD_BASE_codegen = codegen
CTEST_MODE_codegen = codegen
CTEST_RUNTOOL_codegen = $(CTEST_RUNTOOL)

506 507 508 509
ifeq ($(CFG_GDB),)
CTEST_DISABLE_debuginfo = "no gdb found"
endif

510 511 512 513
ifeq ($(CFG_CLANG),)
CTEST_DISABLE_codegen = "no clang found"
endif

514 515 516 517
ifeq ($(CFG_OSTYPE),apple-darwin)
CTEST_DISABLE_debuginfo = "gdb on darwing needs root"
endif

518 519 520 521 522 523 524 525 526 527 528
define DEF_CTEST_VARS

# All the per-stage build rules you might want to call from the
# command line.
#
# $(1) is the stage number
# $(2) is the target triple to test
# $(3) is the host triple to test

# Prerequisites for compiletest tests
TEST_SREQ$(1)_T_$(2)_H_$(3) = \
529
	$$(HBIN$(1)_H_$(3))/compiletest$$(X_$(3)) \
530
	$$(SREQ$(1)_T_$(2)_H_$(3))
B
Brian Anderson 已提交
531

B
Brian Anderson 已提交
532
# Rules for the cfail/rfail/rpass/bench/perf test runner
533

534 535
# The tests select when to use debug configuration on their own;
# remove directive, if present, from CFG_RUSTC_FLAGS (issue #7898).
536
CTEST_RUSTC_FLAGS := $$(subst --cfg ndebug,,$$(CFG_RUSTC_FLAGS))
537 538 539 540 541 542 543 544

# The tests can not be optimized while the rest of the compiler is optimized, so
# filter out the optimization (if any) from rustc and then figure out if we need
# to be optimized
CTEST_RUSTC_FLAGS := $$(subst -O,,$$(CTEST_RUSTC_FLAGS))
ifndef CFG_DISABLE_OPTIMIZE_TESTS
CTEST_RUSTC_FLAGS += -O
endif
545

N
Niko Matsakis 已提交
546
CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3) :=						\
N
Niko Matsakis 已提交
547 548
		--compile-lib-path $$(HLIB$(1)_H_$(3))				\
        --run-lib-path $$(TLIB$(1)_T_$(2)_H_$(3))			\
549
        --rustc-path $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))			\
550
        --clang-path $(if $(CFG_CLANG),$(CFG_CLANG),clang) \
H
Heather 已提交
551
        --llvm-bin-path $(CFG_LLVM_INST_DIR_$(CFG_BUILD))/bin \
552
        --aux-base $$(S)src/test/auxiliary/                 \
N
Niko Matsakis 已提交
553
        --stage-id stage$(1)-$(2)							\
554
        --target $(2)                                       \
555
        --host $(3)                                       \
556
        --adb-path=$(CFG_ADB)                          \
557
        --adb-test-dir=$(CFG_ADB_TEST_DIR)                  \
L
Luqman Aden 已提交
558 559
        --host-rustcflags "$(RUSTC_FLAGS_$(3)) $$(CTEST_RUSTC_FLAGS) -L $$(RT_OUTPUT_DIR_$(2))" \
        --target-rustcflags "$(RUSTC_FLAGS_$(2)) $$(CTEST_RUSTC_FLAGS) -L $$(RT_OUTPUT_DIR_$(2))" \
N
Niko Matsakis 已提交
560 561
        $$(CTEST_TESTARGS)

562 563 564 565 566 567
CTEST_DEPS_rpass_$(1)-T-$(2)-H-$(3) = $$(RPASS_TESTS)
CTEST_DEPS_rpass_full_$(1)-T-$(2)-H-$(3) = $$(RPASS_FULL_TESTS) $$(TLIBRUSTC_DEFAULT$(1)_T_$(2)_H_$(3))
CTEST_DEPS_rfail_$(1)-T-$(2)-H-$(3) = $$(RFAIL_TESTS)
CTEST_DEPS_cfail_$(1)-T-$(2)-H-$(3) = $$(CFAIL_TESTS)
CTEST_DEPS_bench_$(1)-T-$(2)-H-$(3) = $$(BENCH_TESTS)
CTEST_DEPS_perf_$(1)-T-$(2)-H-$(3) = $$(PERF_TESTS)
B
Brian Leibig 已提交
568
CTEST_DEPS_debuginfo_$(1)-T-$(2)-H-$(3) = $$(DEBUGINFO_TESTS)
569
CTEST_DEPS_codegen_$(1)-T-$(2)-H-$(3) = $$(CODEGEN_TESTS)
N
Niko Matsakis 已提交
570

571
endef
N
Niko Matsakis 已提交
572

H
Heather 已提交
573 574
$(foreach host,$(CFG_HOST), \
 $(eval $(foreach target,$(CFG_TARGET), \
575 576
  $(eval $(foreach stage,$(STAGES), \
   $(eval $(call DEF_CTEST_VARS,$(stage),$(target),$(host))))))))
N
Niko Matsakis 已提交
577

578
define DEF_RUN_COMPILETEST
579

580 581
CTEST_ARGS$(1)-T-$(2)-H-$(3)-$(4) := \
        $$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3))	\
582
        --src-base $$(S)src/test/$$(CTEST_SRC_BASE_$(4))/ \
583
        --build-base $(3)/test/$$(CTEST_BUILD_BASE_$(4))/ \
584
        --ratchet-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4)) \
585 586
        --mode $$(CTEST_MODE_$(4)) \
	$$(CTEST_RUNTOOL_$(4))
N
Niko Matsakis 已提交
587

588 589
check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))

590 591
ifeq ($$(CTEST_DISABLE_$(4)),)

592
$$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
593 594
		$$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
                $$(CTEST_DEPS_$(4)_$(1)-T-$(2)-H-$(3))
595
	@$$(call E, run $(4) [$(2)]: $$<)
596
	$$(Q)$$(call CFG_RUN_CTEST_$(2),$(1),$$<,$(3)) \
597
		$$(CTEST_ARGS$(1)-T-$(2)-H-$(3)-$(4)) \
598 599
		--logfile $$(call TEST_LOG_FILE,$(1),$(2),$(3),$(4)) \
                && touch $$@
N
Niko Matsakis 已提交
600

601 602 603 604 605
else

$$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
		$$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
                $$(CTEST_DEPS_$(4)_$(1)-T-$(2)-H-$(3))
606
	@$$(call E, run $(4) [$(2)]: $$<)
607 608 609 610 611
	@$$(call E, warning: tests disabled: $$(CTEST_DISABLE_$(4)))
	touch $$@

endif

612
endef
N
Niko Matsakis 已提交
613

614
CTEST_NAMES = rpass rpass-full rfail cfail bench perf debuginfo codegen
615

H
Heather 已提交
616 617
$(foreach host,$(CFG_HOST), \
 $(eval $(foreach target,$(CFG_TARGET), \
618 619 620 621 622 623 624 625 626 627 628
  $(eval $(foreach stage,$(STAGES), \
   $(eval $(foreach name,$(CTEST_NAMES), \
   $(eval $(call DEF_RUN_COMPILETEST,$(stage),$(target),$(host),$(name))))))))))

PRETTY_NAMES = pretty-rpass pretty-rpass-full pretty-rfail pretty-bench pretty-pretty
PRETTY_DEPS_pretty-rpass = $(RPASS_TESTS)
PRETTY_DEPS_pretty-rpass-full = $(RPASS_FULL_TESTS)
PRETTY_DEPS_pretty-rfail = $(RFAIL_TESTS)
PRETTY_DEPS_pretty-bench = $(BENCH_TESTS)
PRETTY_DEPS_pretty-pretty = $(PRETTY_TESTS)
PRETTY_DIRNAME_pretty-rpass = run-pass
629
PRETTY_DIRNAME_pretty-rpass-full = run-pass-fulldeps
630 631 632 633 634 635 636
PRETTY_DIRNAME_pretty-rfail = run-fail
PRETTY_DIRNAME_pretty-bench = bench
PRETTY_DIRNAME_pretty-pretty = pretty

define DEF_RUN_PRETTY_TEST

PRETTY_ARGS$(1)-T-$(2)-H-$(3)-$(4) :=			\
N
Niko Matsakis 已提交
637
		$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3))	\
638 639
        --src-base $$(S)src/test/$$(PRETTY_DIRNAME_$(4))/ \
        --build-base $(3)/test/$$(PRETTY_DIRNAME_$(4))/ \
N
Niko Matsakis 已提交
640 641
        --mode pretty

642 643 644
check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4))

$$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
645 646
	        $$(TEST_SREQ$(1)_T_$(2)_H_$(3))		\
	        $$(PRETTY_DEPS_$(4))
647
	@$$(call E, run pretty-rpass [$(2)]: $$<)
648
	$$(Q)$$(call CFG_RUN_CTEST_$(2),$(1),$$<,$(3)) \
649
		$$(PRETTY_ARGS$(1)-T-$(2)-H-$(3)-$(4)) \
650 651
		--logfile $$(call TEST_LOG_FILE,$(1),$(2),$(3),$(4)) \
                && touch $$@
N
Niko Matsakis 已提交
652

653
endef
N
Niko Matsakis 已提交
654

H
Heather 已提交
655 656
$(foreach host,$(CFG_HOST), \
 $(foreach target,$(CFG_TARGET), \
657 658 659
  $(foreach stage,$(STAGES), \
   $(foreach pretty-name,$(PRETTY_NAMES), \
    $(eval $(call DEF_RUN_PRETTY_TEST,$(stage),$(target),$(host),$(pretty-name)))))))
B
Brian Anderson 已提交
660

661

662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
######################################################################
# Crate & freestanding documentation tests
######################################################################

define DEF_RUSTDOC
RUSTDOC_EXE_$(1)_T_$(2)_H_$(3) := $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3))
RUSTDOC_$(1)_T_$(2)_H_$(3) := $$(RPATH_VAR$(1)_T_$(2)_H_$(3)) $$(RUSTDOC_EXE_$(1)_T_$(2)_H_$(3))
endef

$(foreach host,$(CFG_HOST), \
 $(foreach target,$(CFG_TARGET), \
  $(foreach stage,$(STAGES), \
   $(eval $(call DEF_RUSTDOC,$(stage),$(target),$(host))))))

# Freestanding

define DEF_DOC_TEST
679

680
check-stage$(1)-T-$(2)-H-$(3)-doc-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4))
681

682 683 684 685 686 687 688 689 690 691 692
# If NO_REBUILD is set then break the dependencies on everything but
# the source files so we can test documentation without rebuilding
# rustdoc etc.
ifeq ($(NO_REBUILD),)
DOCTESTDEP_$(1)_$(2)_$(3)_$(4) = \
	$$(D)/$(4).md \
	$$(TEST_SREQ$(1)_T_$(2)_H_$(3))				\
	$$(RUSTDOC_EXE_$(1)_T_$(2)_H_$(3))
else
DOCTESTDEP_$(1)_$(2)_$(3)_$(4) = $$(D)/$(4).md
endif
693

694 695 696 697 698 699 700 701
ifeq ($(2),$$(CFG_BUILD))
$$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4)): $$(DOCTESTDEP_$(1)_$(2)_$(3)_$(4))
	@$$(call E, run doc-$(4) [$(2)])
	$$(Q)$$(RUSTDOC_$(1)_T_$(2)_H_$(3)) --test $$< --test-args "$$(TESTARGS)" && touch $$@
else
$$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4)):
	touch $$@
endif
702
endef
703

H
Heather 已提交
704 705
$(foreach host,$(CFG_HOST), \
 $(foreach target,$(CFG_TARGET), \
706
  $(foreach stage,$(STAGES), \
707 708 709 710
   $(foreach docname,$(DOCS), \
    $(eval $(call DEF_DOC_TEST,$(stage),$(target),$(host),$(docname)))))))

# Crates
711

712 713
define DEF_CRATE_DOC_TEST

714 715 716 717
# If NO_REBUILD is set then break the dependencies on everything but
# the source files so we can test crate documentation without
# rebuilding any of the parent crates.
ifeq ($(NO_REBUILD),)
718
CRATEDOCTESTDEP_$(1)_$(2)_$(3)_$(4) = \
719 720
	$$(TEST_SREQ$(1)_T_$(2)_H_$(3))				\
	$$(CRATE_FULLDEPS_$(1)_T_$(2)_H_$(3)_$(4))		\
721
	$$(RUSTDOC_EXE_$(1)_T_$(2)_H_$(3))
722
else
723
CRATEDOCTESTDEP_$(1)_$(2)_$(3)_$(4) = $$(RSINPUTS_$(4))
724 725
endif

726 727
check-stage$(1)-T-$(2)-H-$(3)-doc-crate-$(4)-exec: \
	$$(call TEST_OK_FILE,$(1),$(2),$(3),doc-crate-$(4))
728

729
ifeq ($(2),$$(CFG_BUILD))
730 731
$$(call TEST_OK_FILE,$(1),$(2),$(3),doc-crate-$(4)): $$(CRATEDOCTESTDEP_$(1)_$(2)_$(3)_$(4))
	@$$(call E, run doc-crate-$(4) [$(2)])
732
	$$(Q)$$(RUSTDOC_$(1)_T_$(2)_H_$(3)) --test \
733
	    	$$(CRATEFILE_$(4)) --test-args "$$(TESTARGS)" && touch $$@
734
else
735
$$(call TEST_OK_FILE,$(1),$(2),$(3),doc-crate-$(4)):
736 737
	touch $$@
endif
738 739 740 741

endef

$(foreach host,$(CFG_HOST), \
742 743 744 745
 $(foreach target,$(CFG_TARGET), \
  $(foreach stage,$(STAGES), \
   $(foreach crate,$(TEST_DOC_CRATES), \
    $(eval $(call DEF_CRATE_DOC_TEST,$(stage),$(target),$(host),$(crate)))))))
746

747 748 749
######################################################################
# Shortcut rules
######################################################################
750

751 752 753
TEST_GROUPS = \
	crates \
	$(foreach crate,$(TEST_CRATES),$(crate)) \
754
	$(foreach crate,$(TEST_DOC_CRATES),doc-crate-$(crate)) \
755 756 757 758 759 760
	rpass \
	rpass-full \
	rfail \
	cfail \
	bench \
	perf \
A
Alex Crichton 已提交
761
	rmake \
B
Brian Leibig 已提交
762
	debuginfo \
763
	codegen \
764
	doc \
765
	$(foreach docname,$(DOCS),doc-$(docname)) \
766 767 768 769 770 771 772 773 774 775 776
	pretty \
	pretty-rpass \
	pretty-rpass-full \
	pretty-rfail \
	pretty-bench \
	pretty-pretty \
	$(NULL)

define DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST
check-stage$(1)-T-$(2)-H-$(3): check-stage$(1)-T-$(2)-H-$(3)-exec
endef
777

778
$(foreach stage,$(STAGES), \
H
Heather 已提交
779 780
 $(foreach target,$(CFG_TARGET), \
  $(foreach host,$(CFG_HOST), \
781
   $(eval $(call DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST,$(stage),$(target),$(host))))))
782

783 784 785
define DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST_AND_GROUP
check-stage$(1)-T-$(2)-H-$(3)-$(4): check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec
endef
B
Brian Anderson 已提交
786

787
$(foreach stage,$(STAGES), \
H
Heather 已提交
788 789
 $(foreach target,$(CFG_TARGET), \
  $(foreach host,$(CFG_HOST), \
790 791
   $(foreach group,$(TEST_GROUPS), \
    $(eval $(call DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST_AND_GROUP,$(stage),$(target),$(host),$(group)))))))
792

793
define DEF_CHECK_FOR_STAGE
H
Heather 已提交
794 795
check-stage$(1): check-stage$(1)-H-$$(CFG_BUILD)
check-stage$(1)-H-all: $$(foreach target,$$(CFG_TARGET), \
796 797
                           check-stage$(1)-H-$$(target))
endef
798

799 800
$(foreach stage,$(STAGES), \
 $(eval $(call DEF_CHECK_FOR_STAGE,$(stage))))
801

802
define DEF_CHECK_FOR_STAGE_AND_GROUP
H
Heather 已提交
803 804
check-stage$(1)-$(2): check-stage$(1)-H-$$(CFG_BUILD)-$(2)
check-stage$(1)-H-all-$(2): $$(foreach target,$$(CFG_TARGET), \
805 806
                               check-stage$(1)-H-$$(target)-$(2))
endef
807

808 809 810
$(foreach stage,$(STAGES), \
 $(foreach group,$(TEST_GROUPS), \
  $(eval $(call DEF_CHECK_FOR_STAGE_AND_GROUP,$(stage),$(group)))))
811

812 813

define DEF_CHECK_FOR_STAGE_AND_HOSTS
H
Heather 已提交
814
check-stage$(1)-H-$(2): $$(foreach target,$$(CFG_TARGET), \
815
                           check-stage$(1)-T-$$(target)-H-$(2))
B
Brian Anderson 已提交
816
endef
817

818
$(foreach stage,$(STAGES), \
H
Heather 已提交
819
 $(foreach host,$(CFG_HOST), \
820 821 822
  $(eval $(call DEF_CHECK_FOR_STAGE_AND_HOSTS,$(stage),$(host)))))

define DEF_CHECK_FOR_STAGE_AND_HOSTS_AND_GROUP
H
Heather 已提交
823
check-stage$(1)-H-$(2)-$(3): $$(foreach target,$$(CFG_TARGET), \
824 825 826 827
                                check-stage$(1)-T-$$(target)-H-$(2)-$(3))
endef

$(foreach stage,$(STAGES), \
H
Heather 已提交
828
 $(foreach host,$(CFG_HOST), \
829 830
  $(foreach group,$(TEST_GROUPS), \
   $(eval $(call DEF_CHECK_FOR_STAGE_AND_HOSTS_AND_GROUP,$(stage),$(host),$(group))))))
831

B
Brian Anderson 已提交
832
define DEF_CHECK_DOC_FOR_STAGE
833
check-stage$(1)-docs: $$(foreach docname,$$(DOCS),\
B
Brian Anderson 已提交
834
                       check-stage$(1)-T-$$(CFG_BUILD)-H-$$(CFG_BUILD)-doc-$$(docname)) \
835
                     $$(foreach crate,$$(TEST_DOC_CRATES),\
836
                       check-stage$(1)-T-$$(CFG_BUILD)-H-$$(CFG_BUILD)-doc-crate-$$(crate))
B
Brian Anderson 已提交
837 838 839 840 841 842 843 844 845 846 847 848
endef

$(foreach stage,$(STAGES), \
 $(eval $(call DEF_CHECK_DOC_FOR_STAGE,$(stage))))

define DEF_CHECK_CRATE
check-$(1): check-stage2-T-$$(CFG_BUILD)-H-$$(CFG_BUILD)-$(1)-exec
endef

$(foreach crate,$(TEST_CRATES), \
 $(eval $(call DEF_CHECK_CRATE,$(crate))))

N
Niko Matsakis 已提交
849
######################################################################
850
# check-fast rules
N
Niko Matsakis 已提交
851
######################################################################
852

853
FT := run_pass_stage2
H
Heather 已提交
854
FT_LIB := $(call CFG_LIB_NAME_$(CFG_BUILD),$(FT))
855 856
FT_DRIVER := $(FT)_driver

857
GENERATED += tmp/$(FT).rc tmp/$(FT_DRIVER).rs
N
Niko Matsakis 已提交
858

N
Niko Matsakis 已提交
859
tmp/$(FT).rc tmp/$(FT_DRIVER).rs: \
860
		$(RPASS_TESTS) \
N
Niko Matsakis 已提交
861 862
		$(S)src/etc/combine-tests.py
	@$(call E, check: building combined stage2 test runner)
863
	$(Q)$(CFG_PYTHON) $(S)src/etc/combine-tests.py
N
Niko Matsakis 已提交
864 865 866 867 868 869 870 871 872

define DEF_CHECK_FAST_FOR_T_H
# $(1) unused
# $(2) target triple
# $(3) host triple

$$(TLIB2_T_$(2)_H_$(3))/$$(FT_LIB): \
		tmp/$$(FT).rc \
		$$(SREQ2_T_$(2)_H_$(3))
873
	@$$(call E, oxidize: $$@)
A
Alex Crichton 已提交
874
	$$(STAGE2_T_$(2)_H_$(3)) --crate-type=dylib --out-dir $$(@D) $$< \
A
Alex Crichton 已提交
875
	  -L "$$(RT_OUTPUT_DIR_$(2))"
N
Niko Matsakis 已提交
876

877
$(3)/test/$$(FT_DRIVER)-$(2)$$(X_$(2)): \
N
Niko Matsakis 已提交
878 879 880
		tmp/$$(FT_DRIVER).rs \
		$$(TLIB2_T_$(2)_H_$(3))/$$(FT_LIB) \
		$$(SREQ2_T_$(2)_H_$(3))
881
	@$$(call E, oxidize: $$@ $$<)
A
Alex Crichton 已提交
882 883
	$$(STAGE2_T_$(2)_H_$(3)) -o $$@ $$< \
	  -L "$$(RT_OUTPUT_DIR_$(2))"
N
Niko Matsakis 已提交
884

N
Niko Matsakis 已提交
885
$(3)/test/$$(FT_DRIVER)-$(2).out: \
886
		$(3)/test/$$(FT_DRIVER)-$(2)$$(X_$(2)) \
N
Niko Matsakis 已提交
887
		$$(SREQ2_T_$(2)_H_$(3))
888
	$$(Q)$$(call CFG_RUN_TEST_$(2),$$<,$(2),$(3)) \
889
	--logfile tmp/$$(FT_DRIVER)-$(2).log
N
Niko Matsakis 已提交
890

891
check-fast-T-$(2)-H-$(3):     			\
N
Niko Matsakis 已提交
892
	$(3)/test/$$(FT_DRIVER)-$(2).out
N
Niko Matsakis 已提交
893 894 895

endef

H
Heather 已提交
896 897
$(foreach host,$(CFG_HOST), \
 $(eval $(foreach target,$(CFG_TARGET), \
N
Niko Matsakis 已提交
898 899
   $(eval $(call DEF_CHECK_FAST_FOR_T_H,,$(target),$(host))))))

900 901
check-fast: tidy check-fast-H-$(CFG_BUILD) \
	    $(foreach crate,$(TARGET_CRATES),check-stage2-$(crate))
902
	$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
N
Niko Matsakis 已提交
903 904 905 906 907 908

define DEF_CHECK_FAST_FOR_H

check-fast-H-$(1): 		check-fast-T-$(1)-H-$(1)

endef
N
Niko Matsakis 已提交
909

H
Heather 已提交
910
$(foreach host,$(CFG_HOST),			\
911
 $(eval $(call DEF_CHECK_FAST_FOR_H,$(host))))
A
Alex Crichton 已提交
912 913 914 915 916 917 918 919 920

RMAKE_TESTS := $(shell ls -d $(S)src/test/run-make/*/)
RMAKE_TESTS := $(RMAKE_TESTS:$(S)src/test/run-make/%/=%)

define DEF_RMAKE_FOR_T_H
# $(1) the stage
# $(2) target triple
# $(3) host triple

921 922

ifeq ($(2)$(3),$$(CFG_BUILD)$$(CFG_BUILD))
A
Alex Crichton 已提交
923 924 925 926 927 928 929 930 931
check-stage$(1)-T-$(2)-H-$(3)-rmake-exec: \
		$$(call TEST_OK_FILE,$(1),$(2),$(3),rmake)

$$(call TEST_OK_FILE,$(1),$(2),$(3),rmake): \
		$$(RMAKE_TESTS:%=$(3)/test/run-make/%-$(1)-T-$(2)-H-$(3).ok)
	@touch $$@

$(3)/test/run-make/%-$(1)-T-$(2)-H-$(3).ok: \
		$(S)src/test/run-make/%/Makefile \
C
Corey Richardson 已提交
932
		$$(CSREQ$(1)_T_$(2)_H_$(3))
A
Alex Crichton 已提交
933 934
	@rm -rf $(3)/test/run-make/$$*
	@mkdir -p $(3)/test/run-make/$$*
935
	$$(Q)$$(CFG_PYTHON) $(S)src/etc/maketest.py $$(dir $$<) \
A
Alex Crichton 已提交
936
	    $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
A
Alex Crichton 已提交
937
	    $(3)/test/run-make/$$* \
C
Corey Richardson 已提交
938
	    "$$(CC_$(3)) $$(CFG_GCCISH_CFLAGS_$(3))" \
939
	    $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
940 941
	    "$$(TESTNAME)" \
	    "$$(RPATH_VAR$(1)_T_$(2)_H_$(3))"
A
Alex Crichton 已提交
942
	@touch $$@
943 944 945 946 947 948 949
else
# FIXME #11094 - The above rule doesn't work right for multiple targets
check-stage$(1)-T-$(2)-H-$(3)-rmake-exec:
	@true

endif

A
Alex Crichton 已提交
950 951 952 953 954 955 956

endef

$(foreach stage,$(STAGES), \
 $(foreach target,$(CFG_TARGET), \
  $(foreach host,$(CFG_HOST), \
   $(eval $(call DEF_RMAKE_FOR_T_H,$(stage),$(target),$(host))))))