Skip to content

Commit de4890b

Browse files
Add test to ensure passing --doctest_compilation_args multiple times work
1 parent f214a59 commit de4890b

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

src/doc/rustdoc/src/unstable-features.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ This flag can be passed multiple times to nest wrappers.
667667

668668
## Passing arguments to rustc when compiling doctests
669669

670-
You can use the `--doctest-compilation-args` option if you want to add options when compiling the
670+
You can use the `--doctest-compilation-args` flag if you want to add options when compiling the
671671
doctest. For example if you have:
672672

673673
```rust,no_run
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// This test checks that the test behave when `--doctest-compilation-args` is passed
2+
// multiple times.
3+
4+
//@ check-pass
5+
//@ compile-flags: --test -Zunstable-options --doctest-compilation-args=--cfg=testcase_must_be_present
6+
//@ compile-flags: --doctest-compilation-args=--cfg=another
7+
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
8+
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
9+
10+
/// ```
11+
/// #[cfg(testcase_must_be_present)]
12+
/// #[cfg(another)]
13+
/// fn must_be_present() {}
14+
///
15+
/// fn main() { must_be_present() }
16+
/// ```
17+
pub struct Bar;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
running 1 test
3+
test $DIR/rustflags-multiple-args.rs - Bar (line 10) ... ok
4+
5+
test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME
6+

0 commit comments

Comments
 (0)