Skip to content

Commit 86b8dea

Browse files
committed
Ignore tests on some platforms due to #53081
1 parent 96e2d03 commit 86b8dea

34 files changed

+121
-36
lines changed

src/test/ui/copy-a-resource.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// FIXME: missing sysroot spans (#53081)
2+
// ignore-i586-unknown-linux-gnu
3+
// ignore-i586-unknown-linux-musl
4+
// ignore-i686-unknown-linux-musl
5+
16
#[derive(Debug)]
27
struct Foo {
38
i: isize,

src/test/ui/copy-a-resource.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0599]: no method named `clone` found for struct `Foo` in the current scope
2-
--> $DIR/copy-a-resource.rs:18:16
2+
--> $DIR/copy-a-resource.rs:23:16
33
|
44
LL | struct Foo {
55
| ---------- method `clone` not found for this

src/test/ui/derives/derive-assoc-type-not-impl.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// FIXME: missing sysroot spans (#53081)
2+
// ignore-i586-unknown-linux-gnu
3+
// ignore-i586-unknown-linux-musl
4+
// ignore-i686-unknown-linux-musl
5+
16
trait Foo {
27
type X;
38
fn method(&self) {}

src/test/ui/derives/derive-assoc-type-not-impl.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0599]: no method named `clone` found for struct `Bar<NotClone>` in the current scope
2-
--> $DIR/derive-assoc-type-not-impl.rs:18:30
2+
--> $DIR/derive-assoc-type-not-impl.rs:23:30
33
|
44
LL | struct Bar<T: Foo> {
55
| ------------------

src/test/ui/error-codes/E0004-2.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// FIXME: missing sysroot spans (#53081)
2+
// ignore-i586-unknown-linux-gnu
3+
// ignore-i586-unknown-linux-musl
4+
// ignore-i686-unknown-linux-musl
5+
16
fn main() {
27
let x = Some(1);
38

src/test/ui/error-codes/E0004-2.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0004]: non-exhaustive patterns: `None` and `Some(_)` not covered
2-
--> $DIR/E0004-2.rs:4:11
2+
--> $DIR/E0004-2.rs:9:11
33
|
44
LL | match x { }
55
| ^ patterns `None` and `Some(_)` not covered

src/test/ui/error-codes/E0005.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// FIXME: missing sysroot spans (#53081)
2+
// ignore-i586-unknown-linux-gnu
3+
// ignore-i586-unknown-linux-musl
4+
// ignore-i686-unknown-linux-musl
5+
16
fn main() {
27
let x = Some(1);
38
let Some(y) = x; //~ ERROR E0005

src/test/ui/error-codes/E0005.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0005]: refutable pattern in local binding: `None` not covered
2-
--> $DIR/E0005.rs:3:9
2+
--> $DIR/E0005.rs:8:9
33
|
44
LL | let Some(y) = x;
55
| ^^^^^^^ pattern `None` not covered

src/test/ui/error-codes/E0297.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// FIXME: missing sysroot spans (#53081)
2+
// ignore-i586-unknown-linux-gnu
3+
// ignore-i586-unknown-linux-musl
4+
// ignore-i686-unknown-linux-musl
5+
16
fn main() {
27
let xs : Vec<Option<i32>> = vec![Some(1), None];
38

src/test/ui/error-codes/E0297.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0005]: refutable pattern in `for` loop binding: `None` not covered
2-
--> $DIR/E0297.rs:4:9
2+
--> $DIR/E0297.rs:9:9
33
|
44
LL | for Some(x) in xs {}
55
| ^^^^^^^ pattern `None` not covered

0 commit comments

Comments
 (0)