forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#119561 - notriddle:master, r=fmease
rustdoc: rename `issue-\d+.rs` tests to have meaningful names (part 5) Follow up * rust-lang#116214 * rust-lang#116432 * rust-lang#116824 * rust-lang#118105
- Loading branch information
Showing
25 changed files
with
116 additions
and
56 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
tests/rustdoc/issue-52873.rs → tests/rustdoc-ui/ice-blanket-impl-52873.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
tests/rustdoc/issue-55001.rs → ...oc-ui/ice-blanket-impl-selection-55001.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
tests/rustdoc/issue-54705.rs → ...trait-bounds-inference-variables-54705.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// https://github.com/rust-lang/rust/issues/47197 | ||
#![crate_name="foo"] | ||
|
||
// @has foo/fn.whose_woods_these_are_i_think_i_know.html | ||
|
||
/** | ||
* snow | ||
* ice | ||
*/ | ||
pub fn whose_woods_these_are_i_think_i_know() {} |
3 changes: 3 additions & 0 deletions
3
tests/rustdoc/issue-54478-demo-allocator.rs → tests/rustdoc/demo-allocator-54478.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
tests/rustdoc/issue-42760.rs → tests/rustdoc/doc-attr-comment-mix-42760.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
5 changes: 4 additions & 1 deletion
5
tests/rustdoc/issue-41783.rs → ...oc/doctest/doctest-escape-boring-41783.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// https://github.com/rust-lang/rust/issues/35488 | ||
#![crate_name="foo"] | ||
|
||
mod foo { | ||
pub enum Foo { | ||
Bar, | ||
} | ||
pub use self::Foo::*; | ||
} | ||
|
||
// @has 'foo/index.html' '//code' 'pub use self::Foo::*;' | ||
// @has 'foo/enum.Foo.html' | ||
pub use self::foo::*; | ||
|
||
// @has 'foo/index.html' '//code' 'pub use std::option::Option::None;' | ||
pub use std::option::Option::None; |
1 change: 1 addition & 0 deletions
1
tests/rustdoc/issue-53689.rs → tests/rustdoc/impl-blanket-53689.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// https://github.com/rust-lang/rust/issues/53689 | ||
// aux-build:issue-53689.rs | ||
|
||
#![crate_name = "foo"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
5 changes: 4 additions & 1 deletion
5
tests/rustdoc/issue-46727.rs → .../rustdoc/inline_cross/const-eval-46727.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
// https://github.com/rust-lang/rust/issues/46727 | ||
#![crate_name="foo"] | ||
|
||
// aux-build:issue-46727.rs | ||
|
||
extern crate issue_46727; | ||
|
||
// @has issue_46727/trait.Foo.html | ||
// @has foo/trait.Foo.html | ||
// @has - '//h3[@class="code-header"]' 'impl<T> Foo for Bar<[T; 3]>' | ||
pub use issue_46727::{Foo, Bar}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
5 changes: 4 additions & 1 deletion
5
tests/rustdoc/issue-46380-2.rs → ...c-impl-mention-private-generic-46380-2.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// https://github.com/rust-lang/rust/issues/46377 | ||
#![crate_name="foo"] | ||
|
||
// @has 'foo/index.html' '//*[@class="desc docblock-short"]' 'Check out this struct!' | ||
/// # Check out this struct! | ||
pub struct SomeStruct; |