Skip to content

Commit 4466ea0

Browse files
Add regression test to use RUSTFLAGS value in doctests
1 parent 782d228 commit 4466ea0

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

tests/rustdoc-ui/doctest/rustflags.rs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//@ check-pass
2+
//@ compile-flags: --test
3+
//@ rustc-env:RUSTFLAGS=--cfg=testcase_must_be_present
4+
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
5+
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
6+
7+
/// ```
8+
/// #[cfg(testcase_must_be_present)]
9+
/// fn must_be_present() {}
10+
///
11+
/// fn main() { must_be_present() }
12+
/// ```
13+
pub struct Bar;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
running 1 test
3+
test $DIR/rustflags.rs - Bar (line 7) ... 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)