Skip to content

Commit 312658c

Browse files
committed
Add URL to test cases
1 parent fd2f251 commit 312658c

20 files changed

+20
-0
lines changed

Diff for: tests/rustdoc/blanket-impl-29503.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/29503
12
#![crate_name="issue_29503"]
23

34
use std::fmt;

Diff for: tests/rustdoc/const-rendering-macros-33302.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/33302
12
#![crate_name="issue_33302"]
23

34
// Ensure constant and array length values are not taken from source

Diff for: tests/rustdoc/doc-hidden-extern-trait-impl-29584.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// aux-build:issue-29584.rs
22
// ignore-cross-compile
33

4+
// https://github.com/rust-lang/rust/issues/29584
45
#![crate_name="issue_29584"]
56

67
extern crate issue_29584;

Diff for: tests/rustdoc/doc-hidden-trait-implementors-33069.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/33069
12
#![crate_name="issue_33069"]
23

34
pub trait Bar {}

Diff for: tests/rustdoc/doctest-cfg-feature-30252.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// compile-flags:--test --cfg feature="bar"
22

3+
// https://github.com/rust-lang/rust/issues/30252
34
#![crate_name="issue_30252"]
45

56
/// ```rust

Diff for: tests/rustdoc/doctest-ignore-32556.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/32556
12
#![crate_name="issue_32556"]
23

34
/// Blah blah blah

Diff for: tests/rustdoc/duplicate-anchors-32890.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/32890
12
#![crate_name="issue_32890"]
23

34
// @has issue_32890/struct.Foo.html

Diff for: tests/rustdoc/duplicate-anchors-header-29449.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/29449
12
#![crate_name="issue_29449"]
23

34
// @has issue_29449/struct.Foo.html

Diff for: tests/rustdoc/hidden-extern-34025.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/34025
12
#![crate_name = "foo"]
23

34
// @!has 'foo/sys/index.html'

Diff for: tests/rustdoc/ice-assoc-const-for-primitive-31808.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Test that associated item impls on primitive types don't crash rustdoc
22

3+
// https://github.com/rust-lang/rust/issues/31808
34
#![crate_name="issue_31808"]
45

56
pub trait Foo {

Diff for: tests/rustdoc/impl-type-parameter-33592.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/33592
12
#![crate_name = "foo"]
23

34
pub trait Foo<T> {}

Diff for: tests/rustdoc/link-extern-crate-33178.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// build-aux-docs
44
// ignore-cross-compile
55

6+
// https://github.com/rust-lang/rust/issues/33178
67
#![crate_name="issue_33178"]
78

89
// @has issue_33178/index.html

Diff for: tests/rustdoc/link-extern-crate-item-30109.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// aux-build:issue-30109-1.rs
33
// ignore-cross-compile
44

5+
// https://github.com/rust-lang/rust/issues/30109
56
#![crate_name="issue_30109"]
67

78
pub mod quux {

Diff for: tests/rustdoc/link-extern-crate-title-33178.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// aux-build:variant-struct.rs
33
// ignore-cross-compile
44

5+
// https://github.com/rust-lang/rust/issues/33178
56
#![crate_name="issue_33178_1"]
67

78
// @has issue_33178_1/index.html

Diff for: tests/rustdoc/render-enum-variant-structlike-32395.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// build-aux-docs
33
// ignore-cross-compile
44

5+
// https://github.com/rust-lang/rust/issues/32395
56
#![crate_name="issue_32395"]
67

78
// @has variant_struct/enum.Foo.html

Diff for: tests/rustdoc/src-links-inlined-34274.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// build-aux-docs
33
// ignore-cross-compile
44

5+
// https://github.com/rust-lang/rust/issues/34274
56
#![crate_name = "foo"]
67

78
extern crate issue_34274;

Diff for: tests/rustdoc/staged-api-deprecated-unstable-32374.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/32374
12
#![feature(staged_api)]
23
#![doc(issue_tracker_base_url = "https://issue_url/")]
34
#![unstable(feature = "test", issue = "32374")]

Diff for: tests/rustdoc/summary-codeblock-31899.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/31899
12
#![crate_name="issue_31899"]
23

34
// @has issue_31899/index.html

Diff for: tests/rustdoc/summary-reference-link-30366.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// @has issue_30366/index.html '//a/@href' 'http://www.rust-lang.org/'
22

3+
// https://github.com/rust-lang/rust/issues/30366
34
#![crate_name="issue_30366"]
45

56
/// Describe it. [Link somewhere][1].

Diff for: tests/rustdoc/type-alias-impls-32077.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Regression test for <https://github.com/rust-lang/rust/issues/32077>.
22

3+
// https://github.com/rust-lang/rust/issues/32077
34
#![crate_name = "foo"]
45

56
pub struct GenericStruct<T>(T);

0 commit comments

Comments
 (0)