File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -275,6 +275,7 @@ pub fn docs(build: &Build, compiler: &Compiler) {
275275 println ! ( "doc tests for: {}" , p. display( ) ) ;
276276 markdown_test ( build, compiler, & p) ;
277277 }
278+ markdown_test ( build, compiler, & output) ;
278279}
279280
280281/// Run the error index generator tool to execute the tests located in the error
@@ -296,8 +297,6 @@ pub fn error_index(build: &Build, compiler: &Compiler) {
296297 . arg ( "markdown" )
297298 . arg ( & output)
298299 . env ( "CFG_BUILD" , & build. config . build ) ) ;
299-
300- markdown_test ( build, compiler, & output) ;
301300}
302301
303302fn markdown_test ( build : & Build , compiler : & Compiler , markdown : & Path ) {
Original file line number Diff line number Diff line change @@ -474,11 +474,6 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
474474 . default ( true )
475475 . host ( true )
476476 . run ( move |s| check:: docs ( build, & s. compiler ( ) ) ) ;
477- rules. test ( "check-rustdoc-output" , "src/test/rustdoc-test" )
478- . dep ( |s| s. name ( "libtest" ) )
479- . default ( true )
480- . host ( true )
481- . run ( move |s| check:: markdown_test_output_check ( build, & s. compiler ( ) ) ) ;
482477 rules. test ( "check-distcheck" , "distcheck" )
483478 . dep ( |s| s. name ( "dist-src" ) )
484479 . run ( move |_| check:: distcheck ( build) ) ;
You can’t perform that action at this time.
0 commit comments