tests.mk 10.1 KB
Newer Older
G
Graydon Hoare 已提交
1 2 3 4 5 6 7 8
######################################################################
# Testing variables
######################################################################

ALL_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs   \
                              $(S)src/test/*/*/*.rs \
                              $(S)src/test/*/*.rc)

9
RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc)
B
Brian Anderson 已提交
10
RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs)
11 12 13 14
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)
15 16
BENCH_RS := $(wildcard $(S)src/test/bench/*.rs)
PRETTY_RS := $(wildcard $(S)src/test/pretty/*.rs)
G
Graydon Hoare 已提交
17

B
Brian Anderson 已提交
18 19 20
RPASS_TESTS := $(RPASS_RC) $(RPASS_RS)
RFAIL_TESTS := $(RFAIL_RC) $(RFAIL_RS)
CFAIL_TESTS := $(CFAIL_RC) $(CFAIL_RS)
21
BENCH_TESTS := $(BENCH_RS)
22
PRETTY_TESTS := $(PRETTY_RS)
G
Graydon Hoare 已提交
23

24 25 26 27 28
FT := run_pass_stage2
FT_LIB := $(call CFG_LIB_NAME,$(FT))
FT_DRIVER := $(FT)_driver
GENERATED += test/$(FT).rc test/$(FT_DRIVER).rs

B
Brian Anderson 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41
# The arguments to all test runners
ifdef TESTNAME
  TESTARGS += $(TESTNAME)
endif

ifdef CHECK_XFAILS
  TESTARGS += --ignored
endif

# Arguments to the cfail/rfail/rpass/bench tests
ifdef CFG_VALGRIND
  CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
endif
42

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

B
Brian Anderson 已提交
45 46 47
ifdef VERBOSE
  CTEST_TESTARGS += --verbose
endif
48

B
Brian Anderson 已提交
49 50 51
# The test runner that runs the cfail/rfail/rpass and bench tests
COMPILETEST_CRATE := $(S)src/test/compiletest/compiletest.rc
COMPILETEST_INPUTS := $(wildcard $(S)src/test/compiletest/*rs)
52

B
Brian Anderson 已提交
53 54 55
# The standard library test crate
STDTEST_CRATE := $(S)src/test/stdtest/stdtest.rc
STDTEST_INPUTS := $(wildcard $(S)src/test/stdtest/*rs)
56

57 58 59 60 61 62
# Run the compiletest runner itself under valgrind
ifdef CTEST_VALGRIND
  CFG_RUN_CTEST=$(call CFG_RUN_TEST,$(2))
else
  CFG_RUN_CTEST=$(call CFG_RUN,stage$(1)/lib,$(2))
endif
63

B
Brian Anderson 已提交
64 65 66 67 68
######################################################################
# Main test targets
######################################################################

check: tidy check-stage2 \
69

B
Brian Anderson 已提交
70
check-full: tidy check-stage1 check-stage2 check-stage3 \
71

72
check-fast: tidy \
B
Brian Anderson 已提交
73 74
	check-stage2-rustc check-stage2-std \
	test/$(FT_DRIVER).out \
75

B
Brian Anderson 已提交
76 77 78 79 80 81 82 83
tidy:
	@$(call E, check: formatting)
	$(Q)echo \
	  $(filter-out $(GENERATED) $(addprefix $(S)src/, $(GENERATED)) \
	    $(addprefix $(S)src/, $(RUSTLLVM_LIB_CS) $(RUSTLLVM_OBJS_CS) \
	      $(RUSTLLVM_HDR) $(PKG_3RDPARTY)) \
	    $(S)src/etc/%, $(PKG_FILES)) \
	  | xargs -n 10 python $(S)src/etc/tidy.py
G
Graydon Hoare 已提交
84

B
Brian Anderson 已提交
85 86
# Cancel the implicit .out rule in GNU make
%.out: %
G
Graydon Hoare 已提交
87

B
Brian Anderson 已提交
88 89
%.out: %.out.tmp
	$(Q)mv $< $@
G
Graydon Hoare 已提交
90

91 92

######################################################################
B
Brian Anderson 已提交
93
# Rules for the test runners
94 95
######################################################################

B
Brian Anderson 已提交
96 97
# StageN template: to stay consistent with stageN.mk, arge 2 is the
# stage being tested, arg 1 is stage N-1
98

B
Brian Anderson 已提交
99
define TEST_STAGEN
100

101 102 103 104 105 106 107 108
# FIXME: These rules are complicated by a scheme to produce .out files
# for each test, with the idea that if the targets produce actual
# output, subsequent "make check's" will just exit successfully
# without re-running the tests. Unfortunately this scheme is currently
# broken and the tests rerun with every invocation of "make check"
# anyway. Nobody seems to have noticed, so it would be simpler to just
# remove all the code here involved with producing .out files.

B
Brian Anderson 已提交
109 110 111 112 113 114 115
check-stage$(2): tidy \
	check-stage$(2)-rustc \
	check-stage$(2)-std \
	check-stage$(2)-rpass \
	check-stage$(2)-rfail \
	check-stage$(2)-cfail \
	check-stage$(2)-bench \
116
	check-stage$(2)-pretty \
117 118


B
Brian Anderson 已提交
119
# Rules for the standard library test runner
120

B
Brian Anderson 已提交
121
check-stage$(2)-std: test/stdtest.stage$(2).out \
G
Graydon Hoare 已提交
122

B
Brian Anderson 已提交
123 124 125
test/stdtest.stage$(2)$$(X): $$(STDTEST_CRATE) $$(STDTEST_INPUTS) \
                             $$(SREQ$(2))
	@$$(call E, compile_and_link: $$@)
126
	$$(STAGE$(2)) -o $$@ $$< --test
127

B
Brian Anderson 已提交
128 129 130 131
test/stdtest.stage$(2).out.tmp: test/stdtest.stage$(2)$$(X)
	@$$(call E, run: $$<)
	$$(Q)$$(call CFG_RUN_TEST,$$<) $$(TESTARGS)
	$$(Q)touch $$@
132 133


B
Brian Anderson 已提交
134
# Rules for the rustc test runner
135

B
Brian Anderson 已提交
136
check-stage$(2)-rustc: test/rustctest.stage$(2).out \
G
Graydon Hoare 已提交
137

B
Brian Anderson 已提交
138 139 140 141 142 143 144
test/rustctest.stage$(2)$$(X): $$(COMPILER_CRATE) $$(COMPILER_INPUTS) \
                           stage$(2)/$$(CFG_RUNTIME) \
                           $$(call CFG_STDLIB_DEFAULT,stage$(1),stage$(2)) \
                           stage$(2)/$$(CFG_RUSTLLVM) \
                           $$(SREQ$(1))
	@$$(call E, compile_and_link: $$@)
	$$(STAGE$(1)) -o $$@ $$< --test
G
Graydon Hoare 已提交
145

B
Brian Anderson 已提交
146 147 148 149 150
test/rustctest.stage$(2).out.tmp: test/rustctest.stage$(2)$$(X)
	@$$(call E, run: $$<)
	$$(Q)$$(call CFG_RUN,stage$(2),$$(CFG_VALGRIND) $$<) \
	  $$(TESTARGS)
	$$(Q)touch $$@
G
Graydon Hoare 已提交
151 152


B
Brian Anderson 已提交
153
# Rules for the cfail/rfail/rpass/bench test runner
G
Graydon Hoare 已提交
154

B
Brian Anderson 已提交
155
check-stage$(2)-cfail: test/compile-fail.stage$(2).out \
156

B
Brian Anderson 已提交
157
check-stage$(2)-rfail: test/run-fail.stage$(2).out \
158

B
Brian Anderson 已提交
159
check-stage$(2)-rpass: test/run-pass.stage$(2).out \
160

B
Brian Anderson 已提交
161
check-stage$(2)-bench: test/bench.stage$(2).out \
162

163 164 165 166
check-stage$(2)-pretty-rpass: test/pretty-rpass.stage$(2).out \

check-stage$(2)-pretty-rfail: test/pretty-rfail.stage$(2).out \

167 168
check-stage$(2)-pretty-bench: test/pretty-bench.stage$(2).out \

169 170 171 172
check-stage$(2)-pretty-pretty: test/pretty-pretty.stage$(2).out \

check-stage$(2)-pretty: check-stage$(2)-pretty-rpass \
                        check-stage$(2)-pretty-rfail \
173
                        check-stage$(2)-pretty-bench \
174 175
                        check-stage$(2)-pretty-pretty \

B
Brian Anderson 已提交
176 177 178 179 180 181
CTEST_COMMON_ARGS$(2) := --compile-lib-path stage$(2) \
                         --run-lib-path stage$(2)/lib \
                         --rustc-path stage$(2)/rustc$$(X) \
                         --stage-id stage$(2) \
                         --rustcflags "$$(CFG_RUSTC_FLAGS)" \
                         $$(CTEST_TESTARGS) \
182

B
Brian Anderson 已提交
183 184 185 186
CFAIL_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                  --src-base $$(S)src/test/compile-fail/ \
                  --build-base test/compile-fail/ \
                  --mode compile-fail \
187

B
Brian Anderson 已提交
188 189 190 191 192
# FIXME (236): run-fail should run under valgrind once unwinding works
RFAIL_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                  --src-base $$(S)src/test/run-fail/ \
                  --build-base test/run-fail/ \
                  --mode run-fail \
193

B
Brian Anderson 已提交
194 195 196 197 198
RPASS_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                  --src-base $(S)src/test/run-pass/ \
                  --build-base test/run-pass/ \
                  --mode run-pass \
                  $$(CTEST_RUNTOOL) \
199

B
Brian Anderson 已提交
200 201 202 203 204
BENCH_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                  --src-base $(S)src/test/bench/ \
                  --build-base test/bench/ \
                  --mode run-pass \
                  $$(CTEST_RUNTOOL) \
205

206 207 208 209 210 211 212 213 214
PRETTY_RPASS_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                         --src-base $$(S)src/test/run-pass/ \
                         --build-base test/run-pass/ \
                         --mode pretty \

PRETTY_RFAIL_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                         --src-base $$(S)src/test/run-fail/ \
                         --build-base test/run-fail/ \
                         --mode pretty \
215

216 217 218 219 220
PRETTY_BENCH_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                         --src-base $$(S)src/test/bench/ \
                         --build-base test/bench/ \
                         --mode pretty \

221 222 223 224 225
PRETTY_PRETTY_ARGS$(2) := $$(CTEST_COMMON_ARGS$(2)) \
                          --src-base $$(S)src/test/pretty/ \
                          --build-base test/pretty/ \
                          --mode pretty \

B
Brian Anderson 已提交
226 227 228 229 230
test/compiletest.stage$(2)$$(X): $$(COMPILETEST_CRATE) \
                                 $$(COMPILETEST_INPUTS) \
                                 $$(SREQ$(2))
	@$$(call E, compile_and_link: $$@)
	$$(STAGE$(2)) -o $$@ $$<
231

B
Brian Anderson 已提交
232 233 234
test/compile-fail.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                                   $$(CFAIL_TESTS)
	@$$(call E, run: $$<)
235
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(CFAIL_ARGS$(2))
B
Brian Anderson 已提交
236
	$$(Q)touch $$@
237

B
Brian Anderson 已提交
238 239 240
test/run-fail.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                               $$(RFAIL_TESTS)
	@$$(call E, run: $$<)
241
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(RFAIL_ARGS$(2))
B
Brian Anderson 已提交
242 243 244 245 246
	$$(Q)touch $$@

test/run-pass.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                               $$(RPASS_TESTS)
	@$$(call E, run: $$<)
247
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(RPASS_ARGS$(2))
B
Brian Anderson 已提交
248 249 250 251 252
	$$(Q)touch $$@

test/bench.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                            $$(BENCH_TESTS)
	@$$(call E, run: $$<)
253
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(BENCH_ARGS$(2))
B
Brian Anderson 已提交
254
	$$(Q)touch $$@
255

256 257 258 259 260 261 262 263
test/pretty-rpass.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                                     $$(RPASS_TESTS)
	@$$(call E, run: $$<)
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(PRETTY_RPASS_ARGS$(2))
	$$(Q)touch $$@

test/pretty-rfail.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                                     $$(RFAIL_TESTS)
264
	@$$(call E, run: $$<)
265 266 267
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(PRETTY_RFAIL_ARGS$(2))
	$$(Q)touch $$@

268 269 270 271 272 273
test/pretty-bench.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                                     $$(BENCH_TESTS)
	@$$(call E, run: $$<)
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(PRETTY_BENCH_ARGS$(2))
	$$(Q)touch $$@

274 275 276 277
test/pretty-pretty.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
                                     $$(PRETTY_TESTS)
	@$$(call E, run: $$<)
	$$(Q)$$(call CFG_RUN_CTEST,$(2),$$<) $$(PRETTY_PRETTY_ARGS$(2))
278 279
	$$(Q)touch $$@

B
Brian Anderson 已提交
280
endef
281

282
# Instantiate the template for stage 0, 1, 2, 3
283

284
$(eval $(call TEST_STAGEN,0,0))
B
Brian Anderson 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
$(eval $(call TEST_STAGEN,0,1))
$(eval $(call TEST_STAGEN,1,2))
$(eval $(call TEST_STAGEN,2,3))


######################################################################
# Fast-test rules
######################################################################

test/$(FT).rc test/$(FT_DRIVER).rs: $(TEST_RPASS_SOURCES_STAGE2) \
    $(S)src/etc/combine-tests.py
	@$(call E, check: building combined stage2 test runner)
	$(Q)$(S)src/etc/combine-tests.py

stage2/lib/$(FT_LIB): test/$(FT).rc $(SREQ2)
	@$(call E, compile_and_link: $@)
	$(STAGE2) --lib -o $@ $<

test/$(FT_DRIVER)$(X): test/$(FT_DRIVER).rs stage2/lib/$(FT_LIB) $(SREQ2)
	@$(call E, compile_and_link: $@)
	$(STAGE2) -o $@ $<

test/$(FT_DRIVER).out: test/$(FT_DRIVER)$(X) $(SREQ2)
	$(Q)$(call CFG_RUN_TEST, $<) | tee $@