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) {
275
275
println ! ( "doc tests for: {}" , p. display( ) ) ;
276
276
markdown_test ( build, compiler, & p) ;
277
277
}
278
+ markdown_test ( build, compiler, & output) ;
278
279
}
279
280
280
281
/// 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) {
296
297
. arg ( "markdown" )
297
298
. arg ( & output)
298
299
. env ( "CFG_BUILD" , & build. config . build ) ) ;
299
-
300
- markdown_test ( build, compiler, & output) ;
301
300
}
302
301
303
302
fn 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 {
474
474
. default ( true )
475
475
. host ( true )
476
476
. 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 ( ) ) ) ;
482
477
rules. test ( "check-distcheck" , "distcheck" )
483
478
. dep ( |s| s. name ( "dist-src" ) )
484
479
. run ( move |_| check:: distcheck ( build) ) ;
You can’t perform that action at this time.
0 commit comments