Skip printing for skipped doc tests.

This commit is contained in:
Mark Simulacrum 2017-06-06 12:00:22 -06:00
parent a032cb89c5
commit bc8fabbabc

View File

@ -338,7 +338,6 @@ pub fn docs(build: &Build, compiler: &Compiler) {
continue continue
} }
println!("doc tests for: {}", p.display());
markdown_test(build, compiler, &p); markdown_test(build, compiler, &p);
} }
} }
@ -375,6 +374,7 @@ fn markdown_test(build: &Build, compiler: &Compiler, markdown: &Path) {
return; return;
} }
println!("doc tests for: {}", markdown.display());
let mut cmd = Command::new(build.rustdoc(compiler)); let mut cmd = Command::new(build.rustdoc(compiler));
build.add_rustc_lib_path(compiler, &mut cmd); build.add_rustc_lib_path(compiler, &mut cmd);
build.add_rust_test_threads(&mut cmd); build.add_rust_test_threads(&mut cmd);