From bc8fabbabc62a372cb6afd9468ca948520610e0b Mon Sep 17 00:00:00 2001 From: Mark Simulacrum Date: Tue, 6 Jun 2017 12:00:22 -0600 Subject: [PATCH] Skip printing for skipped doc tests. --- src/bootstrap/check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index 23cc22c5cb3..385376333c1 100644 --- a/src/bootstrap/check.rs +++ b/src/bootstrap/check.rs @@ -338,7 +338,6 @@ pub fn docs(build: &Build, compiler: &Compiler) { continue } - println!("doc tests for: {}", p.display()); markdown_test(build, compiler, &p); } } @@ -375,6 +374,7 @@ fn markdown_test(build: &Build, compiler: &Compiler, markdown: &Path) { return; } + println!("doc tests for: {}", markdown.display()); let mut cmd = Command::new(build.rustdoc(compiler)); build.add_rustc_lib_path(compiler, &mut cmd); build.add_rust_test_threads(&mut cmd); -- 2.44.0