Skip to content

Commit 42cd2d4

Browse files
committed
---
yaml --- r: 64829 b: refs/heads/snap-stage3 c: ac2cd14 h: refs/heads/master i: 64827: f5b20be v: v3
1 parent 878c73b commit 42cd2d4

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 8ae900f51d25512a3d95794b1f961ecc31f134f9
4+
refs/heads/snap-stage3: ac2cd14867f2f6d9d2c9055dfd6585ab04c08f03
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/mk/tests.mk

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ ifdef CHECK_XFAILS
3434
TESTARGS += --ignored
3535
endif
3636

37-
CTEST_BENCH = --bench
37+
TEST_BENCH = --bench
3838

3939
# Arguments to the cfail/rfail/rpass/bench tests
4040
ifdef CFG_VALGRIND
4141
CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
42-
CTEST_BENCH =
42+
TEST_BENCH =
4343
endif
4444

4545
# Arguments to the perf tests
@@ -69,12 +69,12 @@ TEST_RATCHET_NOISE_PERCENT=10.0
6969
# Whether to ratchet or merely save benchmarks
7070
ifdef CFG_RATCHET_BENCH
7171
CRATE_TEST_BENCH_ARGS=\
72-
--test $(CTEST_BENCH) \
72+
--test $(TEST_BENCH) \
7373
--ratchet-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4)) \
7474
--ratchet-noise-percent $(TEST_RATCHET_NOISE_PERCENT)
7575
else
7676
CRATE_TEST_BENCH_ARGS=\
77-
--test $(CTEST_BENCH) \
77+
--test $(TEST_BENCH) \
7878
--save-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4))
7979
endif
8080

@@ -312,26 +312,28 @@ define TEST_RUNNER
312312
# If NO_REBUILD is set then break the dependencies on extra so we can
313313
# test crates without rebuilding std and extra first
314314
ifeq ($(NO_REBUILD),)
315-
STDTESTDEP_$(1)_$(2)_$(3) = $$(SREQ$(1)_T_$(2)_H_$(3)) \
316-
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_EXTRALIB_$(2))
315+
STDTESTDEP_$(1)_$(2)_$(3) = $$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_EXTRALIB_$(2))
317316
else
318317
STDTESTDEP_$(1)_$(2)_$(3) =
319318
endif
320319

321320
$(3)/stage$(1)/test/stdtest-$(2)$$(X_$(2)): \
322321
$$(STDLIB_CRATE) $$(STDLIB_INPUTS) \
322+
$$(SREQ$(1)_T_$(2)_H_$(3)) \
323323
$$(STDTESTDEP_$(1)_$(2)_$(3))
324324
@$$(call E, compile_and_link: $$@)
325325
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test
326326

327327
$(3)/stage$(1)/test/extratest-$(2)$$(X_$(2)): \
328328
$$(EXTRALIB_CRATE) $$(EXTRALIB_INPUTS) \
329+
$$(SREQ$(1)_T_$(2)_H_$(3)) \
329330
$$(STDTESTDEP_$(1)_$(2)_$(3))
330331
@$$(call E, compile_and_link: $$@)
331332
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test
332333

333334
$(3)/stage$(1)/test/syntaxtest-$(2)$$(X_$(2)): \
334335
$$(LIBSYNTAX_CRATE) $$(LIBSYNTAX_INPUTS) \
336+
$$(SREQ$(1)_T_$(2)_H_$(3)) \
335337
$$(STDTESTDEP_$(1)_$(2)_$(3))
336338
@$$(call E, compile_and_link: $$@)
337339
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test

0 commit comments

Comments
 (0)