Skip to content

Commit a09a586

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

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=--cap-lints=warn
4+
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
5+
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
6+
7+
/// ```
8+
/// #![deny(warnings)]
9+
/// #![feature(async_await)]
10+
///
11+
/// let x = 12;
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)