Skip to content

Commit 516b90e

Browse files
committed
Break up make tidy even more
1 parent 6e3c141 commit 516b90e

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

mk/tests.mk

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
# Testing variables
33
######################################################################
44

5-
ALL_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs \
6-
$(S)src/test/*/*/*.rs \
7-
$(S)src/test/*/*.rc)
5+
SOME_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs)
6+
7+
SOME_MOAR_TEST_INPUTS = $(wildcard $(S)src/test/*/*/*.rs \
8+
$(S)src/test/*/*.rc)
89

910
RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc)
1011
RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs)
@@ -143,7 +144,10 @@ tidy:
143144
$(RUSTDOC_INPUTS) \
144145
| xargs -n 10 python $(S)src/etc/tidy.py
145146
$(Q)echo \
146-
$(ALL_TEST_INPUTS) \
147+
$(SOME_TEST_INPUTS) \
148+
| xargs -n 10 python $(S)src/etc/tidy.py
149+
$(Q)echo \
150+
$(SOME_MOAR_TEST_INPUTS) \
147151
| xargs -n 10 python $(S)src/etc/tidy.py
148152
$(Q)echo \
149153
$(ALL_CS) \

0 commit comments

Comments
 (0)