File tree 2 files changed +3
-10
lines changed
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 48
48
$(Q )$(BOOTSTRAP ) test $(BOOTSTRAP_ARGS )
49
49
check-aux :
50
50
$(Q )$(BOOTSTRAP ) test \
51
- src/test/pretty \
52
51
src/test/run-pass/pretty \
53
52
src/test/run-fail/pretty \
54
53
src/test/run-pass-valgrind/pretty \
Original file line number Diff line number Diff line change @@ -897,12 +897,10 @@ host_test!(Rustdoc {
897
897
suite: "rustdoc"
898
898
} ) ;
899
899
900
- test ! ( Pretty {
900
+ host_test ! ( Pretty {
901
901
path: "src/test/pretty" ,
902
902
mode: "pretty" ,
903
- suite: "pretty" ,
904
- default : false ,
905
- host: true
903
+ suite: "pretty"
906
904
} ) ;
907
905
test ! ( RunPassPretty {
908
906
path: "src/test/run-pass/pretty" ,
@@ -993,11 +991,7 @@ impl Step for Compiletest {
993
991
} ) ;
994
992
}
995
993
996
- if suite. ends_with ( "fulldeps" ) ||
997
- // FIXME: Does pretty need librustc compiled? Note that there are
998
- // fulldeps test suites with mode = pretty as well.
999
- mode == "pretty"
1000
- {
994
+ if suite. ends_with ( "fulldeps" ) {
1001
995
builder. ensure ( compile:: Rustc { compiler, target } ) ;
1002
996
}
1003
997
You can’t perform that action at this time.
0 commit comments