about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-15318-2.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-12/+0
2021-09-12Fix broken handling of primitive itemsJoshua Nelson-0/+1
- Fix broken handling of primitive associated items - Remove fragment hack Fixes 83083 - more logging - Update CrateNum hacks The CrateNum has no relation to where in the dependency tree the crate is, only when it's loaded. Explicitly special-case core instead of assuming it will be the first DefId. - Update and add tests - Cache calculation of primitive locations This could possibly be avoided by passing a Cache into collect_intra_doc_links; but that's a much larger change, and doesn't seem valuable other than for this.
2019-04-22Remove double trailing newlinesvarkor-1/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2015-04-22Replace ignore-android with ignore-cross-compile in rustdoc testsRyan Prichard-1/+1
The problem is that rustdoc searches for external crates using the host triple, not the target triple. It's actually unclear to me whether this is correct behavior or not, but it is necessary to get cross-compiled tests working.
2015-04-10Test fixes and review feedbackAlex Crichton-0/+1
2015-04-07rustdoc: Add a primitive page for raw pointersAlex Crichton-0/+21
Closes #15318