Skip to content

Commit fc3e49b

Browse files
committed
rustbuild: Move pretty test suites to host-only
In an ongoing effort to optimize the runtime of the Android cross builder this commit updates the pretty test suites to run only for host platforms, not for target platforms as well. This means we'll still keep running all the suites but we'll only run them for configured hosts, not for configured targets. This notably means that we won't be running these suites on Android or musl targets, for example.
1 parent 0807104 commit fc3e49b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/bootstrap/step.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -254,13 +254,6 @@ pub fn build_rules(build: &Build) -> Rules {
254254
suite("check-incremental", "src/test/incremental", "incremental",
255255
"incremental");
256256
suite("check-ui", "src/test/ui", "ui", "ui");
257-
suite("check-pretty", "src/test/pretty", "pretty", "pretty");
258-
suite("check-pretty-rpass", "src/test/run-pass/pretty", "pretty",
259-
"run-pass");
260-
suite("check-pretty-rfail", "src/test/run-pass/pretty", "pretty",
261-
"run-fail");
262-
suite("check-pretty-valgrind", "src/test/run-pass-valgrind", "pretty",
263-
"run-pass-valgrind");
264257
}
265258

266259
if build.config.build.contains("msvc") {
@@ -307,6 +300,13 @@ pub fn build_rules(build: &Build) -> Rules {
307300
"compile-fail", "compile-fail-fulldeps");
308301
suite("check-rmake", "src/test/run-make", "run-make", "run-make");
309302
suite("check-rustdoc", "src/test/rustdoc", "rustdoc", "rustdoc");
303+
suite("check-pretty", "src/test/pretty", "pretty", "pretty");
304+
suite("check-pretty-rpass", "src/test/run-pass/pretty", "pretty",
305+
"run-pass");
306+
suite("check-pretty-rfail", "src/test/run-pass/pretty", "pretty",
307+
"run-fail");
308+
suite("check-pretty-valgrind", "src/test/run-pass-valgrind", "pretty",
309+
"run-pass-valgrind");
310310
suite("check-pretty-rpass-full", "src/test/run-pass-fulldeps",
311311
"pretty", "run-pass-fulldeps");
312312
suite("check-pretty-rfail-full", "src/test/run-fail-fulldeps",

0 commit comments

Comments
 (0)