about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/test-no_std.rs
AgeCommit message (Collapse)AuthorLines
2020-04-19Moving all rustdoc-ui tests to check-passVal Markovic-1/+1
These were all build-pass before and don't seem to need it. Helps with #62277
2020-01-18rustdoc: Fix handling of compile errors when running `rustdoc --test`Oliver Middleton-0/+12
* Call `abort_if_errors` so all errors actually stop rustdoc. * Don't panic with "compiler aborted in rustdoc!", instead just exit to avoid the ugly panic message. * Use rlib as the crate type when searching for doctests matching what is used for doc generation so `#[no_std]` crates don't create "no global memory allocator" errors.