Skip to content

Commit 1fc503b

Browse files
committed
Auto merge of #33092 - alexcrichton:rustbuild-docs, r=brson
rustbuild: Run all markdown documentation tests This commit adds support to rustbuild to run all documentation tests, basically running `rustdoc --test` over all our documentation.
2 parents 6e03608 + ede8944 commit 1fc503b

27 files changed

+140
-84
lines changed

src/bootstrap/build/check.rs

+41-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
// except according to those terms.
1010

1111
use std::fs;
12-
use std::path::PathBuf;
12+
use std::path::{PathBuf, Path};
13+
use std::process::Command;
1314

1415
use build::{Build, Compiler};
1516

@@ -102,3 +103,42 @@ pub fn compiletest(build: &Build,
102103

103104
build.run(&mut cmd);
104105
}
106+
107+
pub fn docs(build: &Build, compiler: &Compiler) {
108+
let mut stack = vec![build.src.join("src/doc")];
109+
110+
while let Some(p) = stack.pop() {
111+
if p.is_dir() {
112+
stack.extend(t!(p.read_dir()).map(|p| t!(p).path()));
113+
continue
114+
}
115+
116+
if p.extension().and_then(|s| s.to_str()) != Some("md") {
117+
continue
118+
}
119+
120+
println!("doc tests for: {}", p.display());
121+
markdown_test(build, compiler, &p);
122+
}
123+
}
124+
125+
pub fn error_index(build: &Build, compiler: &Compiler) {
126+
println!("Testing error-index stage{}", compiler.stage);
127+
128+
let output = testdir(build, compiler.host).join("error-index.md");
129+
build.run(build.tool_cmd(compiler, "error_index_generator")
130+
.arg("markdown")
131+
.arg(&output)
132+
.env("CFG_BUILD", &build.config.build));
133+
134+
markdown_test(build, compiler, &output);
135+
}
136+
137+
fn markdown_test(build: &Build, compiler: &Compiler, markdown: &Path) {
138+
let mut cmd = Command::new(build.rustdoc(compiler));
139+
build.add_rustc_lib_path(compiler, &mut cmd);
140+
cmd.arg("--test");
141+
cmd.arg(markdown);
142+
cmd.arg("--test-args").arg(build.flags.args.join(" "));
143+
build.run(&mut cmd);
144+
}

src/bootstrap/build/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,12 @@ impl Build {
308308
check::compiletest(self, &compiler, target.target,
309309
"compile-fail", "compile-fail-fulldeps")
310310
}
311+
CheckDocs { compiler } => {
312+
check::docs(self, &compiler);
313+
}
314+
CheckErrorIndex { compiler } => {
315+
check::error_index(self, &compiler);
316+
}
311317

312318
DistDocs { stage } => dist::docs(self, stage, target.target),
313319
DistMingw { _dummy } => dist::mingw(self, target.target),

src/bootstrap/build/step.rs

+11
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ macro_rules! targets {
9696
(check_rpass_valgrind, CheckRPassValgrind { compiler: Compiler<'a> }),
9797
(check_rpass_full, CheckRPassFull { compiler: Compiler<'a> }),
9898
(check_cfail_full, CheckCFailFull { compiler: Compiler<'a> }),
99+
(check_docs, CheckDocs { compiler: Compiler<'a> }),
100+
(check_error_index, CheckErrorIndex { compiler: Compiler<'a> }),
99101

100102
// Distribution targets, creating tarballs
101103
(dist, Dist { stage: u32 }),
@@ -341,7 +343,10 @@ impl<'a> Step<'a> {
341343
self.check_rpass_valgrind(compiler),
342344
self.check_rpass_full(compiler),
343345
self.check_cfail_full(compiler),
346+
self.check_error_index(compiler),
347+
self.check_docs(compiler),
344348
self.check_linkcheck(stage),
349+
self.check_tidy(stage),
345350
self.dist(stage),
346351
]
347352
}
@@ -383,6 +388,12 @@ impl<'a> Step<'a> {
383388
vec![self.librustc(compiler),
384389
self.tool_compiletest(compiler.stage)]
385390
}
391+
Source::CheckDocs { compiler } => {
392+
vec![self.libstd(compiler)]
393+
}
394+
Source::CheckErrorIndex { compiler } => {
395+
vec![self.libstd(compiler), self.tool_error_index(compiler.stage)]
396+
}
386397

387398
Source::ToolLinkchecker { stage } |
388399
Source::ToolTidy { stage } => {

src/doc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ libraries.
99

1010
To generate HTML documentation from one source file/crate, do something like:
1111

12-
~~~~
12+
~~~~text
1313
rustdoc --output html-doc/ --output-format html ../src/libstd/path.rs
1414
~~~~
1515

@@ -20,7 +20,7 @@ rustdoc --output html-doc/ --output-format html ../src/libstd/path.rs
2020
To generate an HTML version of a doc from Markdown manually, you can do
2121
something like:
2222

23-
~~~~
23+
~~~~text
2424
rustdoc reference.md
2525
~~~~
2626

src/doc/style/errors/ergonomics.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pattern.
99

1010
Prefer
1111

12-
```rust
12+
```rust,ignore
1313
use std::io::{File, Open, Write, IoError};
1414
1515
struct Info {
@@ -31,7 +31,7 @@ fn write_info(info: &Info) -> Result<(), IoError> {
3131

3232
over
3333

34-
```rust
34+
```rust,ignore
3535
use std::io::{File, Open, Write, IoError};
3636
3737
struct Info {

src/doc/style/features/functions-and-methods/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
Prefer
66

7-
```rust
7+
```rust,ignore
88
impl Foo {
99
pub fn frob(&self, w: widget) { ... }
1010
}
1111
```
1212

1313
over
1414

15-
```rust
15+
```rust,ignore
1616
pub fn frob(foo: &Foo, w: widget) { ... }
1717
```
1818

src/doc/style/features/functions-and-methods/input.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
Prefer
88

9-
```rust
9+
```rust,ignore
1010
fn foo(b: Bar) {
1111
// use b as owned, directly
1212
}
1313
```
1414

1515
over
1616

17-
```rust
17+
```rust,ignore
1818
fn foo(b: &Bar) {
1919
let b = b.clone();
2020
// use b as owned after cloning
@@ -33,13 +33,13 @@ needed, not as a way of signaling that copies should be cheap to make.
3333

3434
Prefer
3535

36-
```rust
36+
```rust,ignore
3737
fn foo(b: Bar) -> Bar { ... }
3838
```
3939

4040
over
4141

42-
```rust
42+
```rust,ignore
4343
fn foo(b: Box<Bar>) -> Box<Bar> { ... }
4444
```
4545

@@ -56,13 +56,13 @@ it becomes.
5656

5757
Prefer
5858

59-
```rust
59+
```rust,ignore
6060
fn foo<T: Iterator<i32>>(c: T) { ... }
6161
```
6262

6363
over any of
6464

65-
```rust
65+
```rust,ignore
6666
fn foo(c: &[i32]) { ... }
6767
fn foo(c: &Vec<i32>) { ... }
6868
fn foo(c: &SomeOtherCollection<i32>) { ... }
@@ -83,14 +83,14 @@ concrete nor overly abstract. See the discussion on
8383

8484
Prefer either of
8585

86-
```rust
86+
```rust,ignore
8787
fn foo(b: &Bar) { ... }
8888
fn foo(b: &mut Bar) { ... }
8989
```
9090

9191
over
9292

93-
```rust
93+
```rust,ignore
9494
fn foo(b: Bar) { ... }
9595
```
9696

@@ -101,13 +101,13 @@ ownership is actually needed.
101101

102102
Prefer
103103

104-
```rust
104+
```rust,ignore
105105
fn foo() -> (Bar, Bar)
106106
```
107107

108108
over
109109

110-
```rust
110+
```rust,ignore
111111
fn foo(output: &mut Bar) -> Bar
112112
```
113113

@@ -120,7 +120,7 @@ multiple values, it should do so via one of these types.
120120
The primary exception: sometimes a function is meant to modify data
121121
that the caller already owns, for example to re-use a buffer:
122122

123-
```rust
123+
```rust,ignore
124124
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize>
125125
```
126126

@@ -146,7 +146,7 @@ Choose an argument type that rules out bad inputs.
146146

147147
For example, prefer
148148

149-
```rust
149+
```rust,ignore
150150
enum FooMode {
151151
Mode1,
152152
Mode2,
@@ -157,7 +157,7 @@ fn foo(mode: FooMode) { ... }
157157

158158
over
159159

160-
```rust
160+
```rust,ignore
161161
fn foo(mode2: bool, mode3: bool) {
162162
assert!(!mode2 || !mode3);
163163
...

src/doc/style/features/functions-and-methods/output.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ API.
1616

1717
Prefer
1818

19-
```rust
19+
```rust,ignore
2020
struct SearchResult {
2121
found: bool, // item in container?
2222
expected_index: usize // what would the item's index be?
@@ -26,27 +26,27 @@ fn binary_search(&self, k: Key) -> SearchResult
2626
```
2727
or
2828

29-
```rust
29+
```rust,ignore
3030
fn binary_search(&self, k: Key) -> (bool, usize)
3131
```
3232

3333
over
3434

35-
```rust
35+
```rust,ignore
3636
fn binary_search(&self, k: Key) -> bool
3737
```
3838

3939
#### Yield back ownership:
4040

4141
Prefer
4242

43-
```rust
43+
```rust,ignore
4444
fn from_utf8_owned(vv: Vec<u8>) -> Result<String, Vec<u8>>
4545
```
4646

4747
over
4848

49-
```rust
49+
```rust,ignore
5050
fn from_utf8_owned(vv: Vec<u8>) -> Option<String>
5151
```
5252

src/doc/style/features/let.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Prefer
66

7-
```rust
7+
```rust,ignore
88
fn use_mutex(m: sync::mutex::Mutex<i32>) {
99
let guard = m.lock();
1010
do_work(guard);
@@ -15,7 +15,7 @@ fn use_mutex(m: sync::mutex::Mutex<i32>) {
1515

1616
over
1717

18-
```rust
18+
```rust,ignore
1919
fn use_mutex(m: sync::mutex::Mutex<i32>) {
2020
do_work(m.lock());
2121
// do other work
@@ -32,7 +32,7 @@ explicitly `let`-bound to make the lifetime clear. Consider using an explicit
3232

3333
Prefer
3434

35-
```rust
35+
```rust,ignore
3636
let foo = match bar {
3737
Baz => 0,
3838
Quux => 1
@@ -41,7 +41,7 @@ let foo = match bar {
4141

4242
over
4343

44-
```rust
44+
```rust,ignore
4545
let foo;
4646
match bar {
4747
Baz => {
@@ -60,14 +60,14 @@ conditional expression.
6060

6161
Prefer
6262

63-
```rust
63+
```rust,ignore
6464
let v = s.iter().map(|x| x * 2)
6565
.collect::<Vec<_>>();
6666
```
6767

6868
over
6969

70-
```rust
70+
```rust,ignore
7171
let v: Vec<_> = s.iter().map(|x| x * 2)
7272
.collect();
7373
```
@@ -87,7 +87,7 @@ the type by explicit generics instantiation, which is usually more clear.
8787

8888
Use `mut` bindings to signal the span during which a value is mutated:
8989

90-
```rust
90+
```rust,ignore
9191
let mut v = Vec::new();
9292
// push things onto v
9393
let v = v;

src/doc/style/features/match.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Prefer
66

7-
~~~~
7+
~~~~ignore
88
match *foo {
99
X(...) => ...
1010
Y(...) => ...
@@ -13,7 +13,7 @@ match *foo {
1313

1414
over
1515

16-
~~~~
16+
~~~~ignore
1717
match foo {
1818
box X(...) => ...
1919
box Y(...) => ...

0 commit comments

Comments
 (0)