Skip to content

Commit

Permalink
Auto merge of #51392 - glaubitz:powerpc-tests, r=petrochenkov
Browse files Browse the repository at this point in the history
test: Ignore some problematic tests on powerpc and powerpc64*

This updates the list of tests which can be safely ignored on powerpc and powerpc64*.
  • Loading branch information
bors committed Jun 17, 2018
2 parents 594b05d + d63aabc commit 499583a
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 8 deletions.
3 changes: 3 additions & 0 deletions src/test/codegen/repr-transparent-aggregates-2.rs
Expand Up @@ -13,6 +13,9 @@
// ignore-aarch64
// ignore-asmjs
// ignore-mips64
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-s390x
// ignore-sparc
// ignore-sparc64
Expand Down
2 changes: 2 additions & 0 deletions src/test/codegen/stack-probes.rs
Expand Up @@ -13,6 +13,8 @@
// ignore-mips
// ignore-mips64
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-s390x
// ignore-sparc
// ignore-sparc64
Expand Down
3 changes: 3 additions & 0 deletions src/test/codegen/x86_mmx.rs
Expand Up @@ -13,6 +13,9 @@
// ignore-emscripten
// ignore-mips
// ignore-mips64
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64
// compile-flags: -O
Expand Down
2 changes: 2 additions & 0 deletions src/test/compile-fail/asm-bad-clobber.rs
Expand Up @@ -14,6 +14,8 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64
// ignore-mips
Expand Down
2 changes: 2 additions & 0 deletions src/test/compile-fail/asm-in-bad-modifier.rs
Expand Up @@ -11,6 +11,8 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64
// ignore-mips
Expand Down
2 changes: 2 additions & 0 deletions src/test/compile-fail/asm-misplaced-option.rs
Expand Up @@ -14,6 +14,8 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64
// ignore-mips
Expand Down
2 changes: 2 additions & 0 deletions src/test/compile-fail/asm-out-no-modifier.rs
Expand Up @@ -11,6 +11,8 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64
// ignore-mips
Expand Down
2 changes: 2 additions & 0 deletions src/test/compile-fail/asm-out-read-uninit.rs
Expand Up @@ -11,6 +11,8 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64
// ignore-mips
Expand Down
2 changes: 2 additions & 0 deletions src/test/compile-fail/borrowck/borrowck-asm.rs
Expand Up @@ -11,6 +11,8 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64

Expand Down
2 changes: 2 additions & 0 deletions src/test/ui/asm-out-assign-imm.rs
Expand Up @@ -11,6 +11,8 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc
// ignore-sparc64
// ignore-mips
Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/asm-out-assign-imm.stderr
@@ -1,5 +1,5 @@
error[E0384]: cannot assign twice to immutable variable `x`
--> $DIR/asm-out-assign-imm.rs:31:9
--> $DIR/asm-out-assign-imm.rs:33:9
|
LL | x = 1;
| ----- first assignment to `x`
Expand Down
2 changes: 2 additions & 0 deletions src/test/ui/target-feature-wrong.rs
Expand Up @@ -14,6 +14,8 @@
// ignore-emscripten
// ignore-mips
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-s390x
// ignore-sparc
// ignore-sparc64
Expand Down
14 changes: 7 additions & 7 deletions src/test/ui/target-feature-wrong.stderr
@@ -1,35 +1,35 @@
error: #[target_feature] attribute must be of the form #[target_feature(..)]
--> $DIR/target-feature-wrong.rs:23:1
--> $DIR/target-feature-wrong.rs:25:1
|
LL | #[target_feature = "+sse2"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: the feature named `foo` is not valid for this target
--> $DIR/target-feature-wrong.rs:25:18
--> $DIR/target-feature-wrong.rs:27:18
|
LL | #[target_feature(enable = "foo")]
| ^^^^^^^^^^^^^^

error: #[target_feature(..)] only accepts sub-keys of `enable` currently
--> $DIR/target-feature-wrong.rs:27:18
--> $DIR/target-feature-wrong.rs:29:18
|
LL | #[target_feature(bar)]
| ^^^

error: #[target_feature(..)] only accepts sub-keys of `enable` currently
--> $DIR/target-feature-wrong.rs:29:18
--> $DIR/target-feature-wrong.rs:31:18
|
LL | #[target_feature(disable = "baz")]
| ^^^^^^^^^^^^^^^

error: #[target_feature(..)] can only be applied to `unsafe` function
--> $DIR/target-feature-wrong.rs:33:1
--> $DIR/target-feature-wrong.rs:35:1
|
LL | #[target_feature(enable = "sse2")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: attribute should be applied to a function
--> $DIR/target-feature-wrong.rs:37:1
--> $DIR/target-feature-wrong.rs:39:1
|
LL | #[target_feature(enable = "sse2")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand All @@ -38,7 +38,7 @@ LL | mod another {}
| -------------- not a function

error: cannot use #[inline(always)] with #[target_feature]
--> $DIR/target-feature-wrong.rs:41:1
--> $DIR/target-feature-wrong.rs:43:1
|
LL | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
Expand Down

0 comments on commit 499583a

Please sign in to comment.