Skip to content

Commit 0ad3207

Browse files
committed
Auto merge of #59120 - alexreg:move-issue-tests-1, r=varkor
Moved issue tests to subdirs and normalised names Consistency, decluttering, ease of navigation :-) r? @Centril
2 parents 719b0d9 + fe30743 commit 0ad3207

File tree

206 files changed

+177
-188
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+177
-188
lines changed

src/test/debuginfo/issue-13213.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// min-lldb-version: 310
22

3-
// aux-build:issue13213aux.rs
3+
// aux-build:issue-13213-aux.rs
44

5-
extern crate issue13213aux;
5+
extern crate issue_13213_aux;
66

77
// compile-flags:-g
88

99
// This tests make sure that we get no linker error when using a completely inlined static. Some
1010
// statics that are marked with AvailableExternallyLinkage in the importing crate, may actually not
1111
// be available because they have been optimized out from the exporting crate.
1212
fn main() {
13-
let b: issue13213aux::S = issue13213aux::A;
13+
let b: issue_13213_aux::S = issue_13213_aux::A;
1414
println!("Nothing to do here...");
1515
}

src/test/incremental/issue-49482.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// aux-build:issue_49482_macro_def.rs
2-
// aux-build:issue_49482_reexport.rs
1+
// aux-build:issue-49482-macro-def.rs
2+
// aux-build:issue-49482-reexport.rs
33
// revisions: rpass1
44

55
extern crate issue_49482_reexport;

src/test/incremental/issue-54059.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aux-build:issue_54059.rs
1+
// aux-build:issue-54059.rs
22
// ignore-wasm32-bare no libc for ffi testing
33
// ignore-windows - dealing with weird symbols issues on dylibs isn't worth it
44
// revisions: rpass1

src/test/pretty/issue_12590_a.rs renamed to src/test/pretty/issue-12590-a.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
// The next line should not be expanded
44

5+
#[path = "issue-12590-b.rs"]
56
mod issue_12590_b;
67

78
fn main() { }

src/test/pretty/issue-12590-b.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Second part of two-file test
2+
3+
fn b() { }
4+
5+
fn main() { }

0 commit comments

Comments
 (0)