about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/intra-doc/auxiliary
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-61/+0
2022-04-26rustdoc: Resolve doc links on fields during early resolutionVadim Petrochenkov-0/+18
2022-04-07rustdoc: Early doc link resolution fixes and refactoringsVadim Petrochenkov-0/+11
2021-11-28Fix warnings in rustdoc HTML testsNoah Lev-0/+20
Now that compiletest denies warnings in these tests, they need fixing!
2021-11-08Add more missing methods to `IntraLinkCrateLoader`Joshua Nelson-0/+4
This helps with (but does not fix) https://github.com/rust-lang/rust/issues/84738. I tested on https://github.com/jyn514/objr/commit/edcee7b8124abf0e4c63873e8422ff81beb11ebb and still hit ICEs.
2021-02-19[intra-doc links] Don't check feature gates of items re-exported across cratesJoshua Nelson-0/+4
It should be never break another crate to re-export a public item. Note that this doesn't check the feature gate at *all* for other crates: - Feature-gates aren't currently serialized, so the only way to check the gate is with ad-hoc attribute checking. - Checking the feature gate twice (once when documenting the original crate and one when documenting the current crate) seems not great. This should still catch using the feature most of the time though, since people tend to document their own crates.
2020-11-28Move `src/test/rustdoc-ui` intra-doc tests into a subdirectoryJoshua Nelson-0/+4
This also changes the builder to allow using `x.py test src/test/rustdoc-ui/intra-doc`; before, it would panic that no paths were found.