rust/tests/rustdoc-ui/doctest/cfg-test.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
707 B
Rust
Raw Permalink Normal View History

//@ check-pass
2019-07-02 13:30:54 -05:00
//@ compile-flags:--test --test-args --test-threads=1
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
2019-04-24 15:26:42 -05:00
// Crates like core have doctests gated on `cfg(not(test))` so we need to make
// sure `cfg(test)` is not active when running `rustdoc --test`.
2019-04-24 15:26:42 -05:00
/// this doctest will be ignored:
///
/// ```
/// assert!(false);
/// ```
#[cfg(test)]
2019-04-24 15:26:42 -05:00
pub struct Foo;
/// this doctest will be tested:
///
/// ```
/// assert!(true);
/// ```
#[cfg(not(test))]
2019-04-24 15:26:42 -05:00
pub struct Foo;
/// this doctest will be tested, but will not appear in documentation:
///
/// ```
/// assert!(true)
/// ```
#[cfg(doctest)]
pub struct Bar;