From 516b90e6468dc9df2fc8bfa185e5394eb8e99b92 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 11 Apr 2012 18:17:42 -0700 Subject: [PATCH] Break up make tidy even more --- mk/tests.mk | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/mk/tests.mk b/mk/tests.mk index 2fbdefb5944..f519db29e61 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -2,9 +2,10 @@ # Testing variables ###################################################################### -ALL_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs \ - $(S)src/test/*/*/*.rs \ - $(S)src/test/*/*.rc) +SOME_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs) + +SOME_MOAR_TEST_INPUTS = $(wildcard $(S)src/test/*/*/*.rs \ + $(S)src/test/*/*.rc) RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc) RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs) @@ -143,7 +144,10 @@ tidy: $(RUSTDOC_INPUTS) \ | xargs -n 10 python $(S)src/etc/tidy.py $(Q)echo \ - $(ALL_TEST_INPUTS) \ + $(SOME_TEST_INPUTS) \ + | xargs -n 10 python $(S)src/etc/tidy.py + $(Q)echo \ + $(SOME_MOAR_TEST_INPUTS) \ | xargs -n 10 python $(S)src/etc/tidy.py $(Q)echo \ $(ALL_CS) \