File tree 2 files changed +7
-16
lines changed
2 files changed +7
-16
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: bea41aa7d8ef0d47b973fada981723cefc37d490
2
+ refs/heads/master: b628c352f36b62c22014e0e9383090cfbae2e50c
Original file line number Diff line number Diff line change @@ -568,17 +568,12 @@ docsnap: doc/rust.pdf
568
568
# Testing variables
569
569
# #####################################################################
570
570
571
- TEST_XFAILS_BOOT = $(shell grep \
572
- --recursive \
573
- --files-with-matches \
574
- --include=* .rs --include=* .rc \
575
- xfail-boot $(S ) src/test)
576
-
577
- TEST_XFAILS_STAGE0 = $(shell grep \
578
- --recursive \
579
- --files-with-matches \
580
- --include=* .rs --include=* .rc \
581
- xfail-stage0 $(S ) src/test)
571
+ ALL_TEST_INPUTS = $(wildcard $(S ) src/test/* /* .rs \
572
+ $(S ) src/test/* /* /* .rs \
573
+ $(S ) src/test/* /* .rc)
574
+
575
+ TEST_XFAILS_BOOT = $(shell grep -l xfail-boot $(ALL_TEST_INPUTS ) )
576
+ TEST_XFAILS_STAGE0 = $(shell grep -l xfail-stage0 $(ALL_TEST_INPUTS ) )
582
577
583
578
ifdef MINGW_CROSS
584
579
TEST_XFAILS_BOOT += $(S ) src/test/run-pass/native-mod.rc
@@ -688,10 +683,6 @@ ALL_TEST_SOURCES = $(TEST_CFAIL_SOURCES_BOOT) \
688
683
$(TEST_RFAIL_SOURCES_STAGE0 ) \
689
684
$(TEST_RPASS_SOURCES_STAGE0 )
690
685
691
- ALL_TEST_INPUTS = $(wildcard $(S ) src/test/* /* .rs \
692
- $(S ) src/test/* /* /* .rs \
693
- $(S ) src/test/* /* .rc)
694
-
695
686
# The test suite currently relies on logging to validate results so
696
687
# make sure that logging uses the default configuration
697
688
unexport RUST_LOG
You can’t perform that action at this time.
0 commit comments