about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-23207.rs
AgeCommit message (Collapse)AuthorLines
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: Handle duplicate reexports listedAlex Crichton-0/+19
This ends up causing duplicate output in rustdoc. The source of these duplicates is that the item is defined in both resolve namespaces, so it's listed twice. Closes #23207