rustdoc: add URLs for test issues
This commit is contained in:
parent
7cd8b2c925
commit
0487237f12
22 changed files with 25 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
// @has issue_15169/struct.Foo.html '//*[@id="method.eq"]' 'fn eq'
|
// @has issue_15169/struct.Foo.html '//*[@id="method.eq"]' 'fn eq'
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/15169
|
||||||
#![crate_name="issue_15169"]
|
#![crate_name="issue_15169"]
|
||||||
|
|
||||||
#[derive(PartialEq)]
|
#[derive(PartialEq)]
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// aux-build:issue-20646.rs
|
// aux-build:issue-20646.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/20646
|
||||||
#![crate_name="issue_20646"]
|
#![crate_name="issue_20646"]
|
||||||
#![feature(associated_types)]
|
#![feature(associated_types)]
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/19190
|
||||||
|
|
||||||
#![crate_name="issue_19190_2"]
|
#![crate_name="issue_19190_2"]
|
||||||
|
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// aux-build:issue-19190-3.rs
|
// aux-build:issue-19190-3.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/19190
|
||||||
#![crate_name="issue_19190_3"]
|
#![crate_name="issue_19190_3"]
|
||||||
|
|
||||||
extern crate issue_19190_3;
|
extern crate issue_19190_3;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/19190
|
||||||
#![crate_name="issue_19190"]
|
#![crate_name="issue_19190"]
|
||||||
|
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// aux-build:issue-13698.rs
|
// aux-build:issue-13698.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/13698
|
||||||
#![crate_name="issue_13698"]
|
#![crate_name="issue_13698"]
|
||||||
|
|
||||||
extern crate issue_13698;
|
extern crate issue_13698;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
// compile-flags:--test
|
// compile-flags:--test
|
||||||
|
// https://github.com/rust-lang/rust/issues/18199
|
||||||
|
|
||||||
#![doc(test(attr(feature(staged_api))))]
|
#![doc(test(attr(feature(staged_api))))]
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
// compile-flags: -Z unstable-options --document-hidden-items
|
// compile-flags: -Z unstable-options --document-hidden-items
|
||||||
|
// https://github.com/rust-lang/rust/issues/15347
|
||||||
|
|
||||||
#![crate_name="issue_15347"]
|
#![crate_name="issue_15347"]
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// Tests that failing to syntax highlight a rust code-block doesn't cause
|
// Tests that failing to syntax highlight a rust code-block doesn't cause
|
||||||
// rustdoc to fail, while still rendering the code-block (without highlighting).
|
// rustdoc to fail, while still rendering the code-block (without highlighting).
|
||||||
|
// https://github.com/rust-lang/rust/issues/12834
|
||||||
|
|
||||||
#![crate_name="issue_12834"]
|
#![crate_name="issue_12834"]
|
||||||
#![allow(rustdoc::invalid_rust_codeblocks)]
|
#![allow(rustdoc::invalid_rust_codeblocks)]
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
// compile-flags:--test
|
// compile-flags:--test
|
||||||
|
// https://github.com/rust-lang/rust/issues/19181
|
||||||
|
|
||||||
// rustdoc should not panic when target crate has compilation errors
|
// rustdoc should not panic when target crate has compilation errors
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/20175
|
||||||
|
|
||||||
#![crate_name="issue_20175"]
|
#![crate_name="issue_20175"]
|
||||||
|
|
||||||
pub trait Foo {
|
pub trait Foo {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/16265
|
||||||
#![crate_name="issue_16265_1"]
|
#![crate_name="issue_16265_1"]
|
||||||
|
|
||||||
pub struct Foo;
|
pub struct Foo;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/16265
|
||||||
#![crate_name="issue_16265_2"]
|
#![crate_name="issue_16265_2"]
|
||||||
|
|
||||||
// @hasraw issue_16265_2/index.html 'source'
|
// @hasraw issue_16265_2/index.html 'source'
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// aux-build:issue-20727.rs
|
// aux-build:issue-20727.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/20727
|
||||||
#![crate_name="issue_20727_2"]
|
#![crate_name="issue_20727_2"]
|
||||||
|
|
||||||
extern crate issue_20727;
|
extern crate issue_20727;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// aux-build:issue-20727.rs
|
// aux-build:issue-20727.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/20727
|
||||||
#![crate_name="issue_20727_3"]
|
#![crate_name="issue_20727_3"]
|
||||||
|
|
||||||
extern crate issue_20727;
|
extern crate issue_20727;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// aux-build:issue-20727.rs
|
// aux-build:issue-20727.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/20727
|
||||||
#![crate_name="issue_20727_4"]
|
#![crate_name="issue_20727_4"]
|
||||||
|
|
||||||
extern crate issue_20727;
|
extern crate issue_20727;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// aux-build:issue-20727.rs
|
// aux-build:issue-20727.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/20727
|
||||||
#![crate_name="issue_20727"]
|
#![crate_name="issue_20727"]
|
||||||
|
|
||||||
extern crate issue_20727;
|
extern crate issue_20727;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/16019
|
||||||
|
|
||||||
macro_rules! define_struct {
|
macro_rules! define_struct {
|
||||||
($rounds:expr) => (
|
($rounds:expr) => (
|
||||||
struct Struct {
|
struct Struct {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// aux-build:issue-17476.rs
|
// aux-build:issue-17476.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
// https://github.com/rust-lang/rust/issues/17476
|
||||||
|
|
||||||
#![crate_name="issue_17476"]
|
#![crate_name="issue_17476"]
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/15318
|
||||||
#![crate_name="issue_15318_3"]
|
#![crate_name="issue_15318_3"]
|
||||||
#![feature(rustc_attrs)]
|
#![feature(rustc_attrs)]
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// aux-build:issue-15318.rs
|
// aux-build:issue-15318.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
// https://github.com/rust-lang/rust/issues/15318
|
||||||
|
|
||||||
#![crate_name="issue_15318"]
|
#![crate_name="issue_15318"]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// aux-build:issue-15318.rs
|
// aux-build:issue-15318.rs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
// https://github.com/rust-lang/rust/issues/15318
|
||||||
|
|
||||||
#![crate_name="issue_15318_2"]
|
#![crate_name="issue_15318_2"]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
Loading…
Add table
Reference in a new issue