test: Ignore some problematic tests on powerpc and powerpc64*

This commit is contained in:
John Paul Adrian Glaubitz 2018-06-06 00:12:00 +02:00
parent aec00f97e1
commit d63aabcb36
13 changed files with 32 additions and 8 deletions

View File

@ -13,6 +13,9 @@
// ignore-aarch64 // ignore-aarch64
// ignore-asmjs // ignore-asmjs
// ignore-mips64 // ignore-mips64
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-s390x // ignore-s390x
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64

View File

@ -13,6 +13,8 @@
// ignore-mips // ignore-mips
// ignore-mips64 // ignore-mips64
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-s390x // ignore-s390x
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64

View File

@ -13,6 +13,9 @@
// ignore-emscripten // ignore-emscripten
// ignore-mips // ignore-mips
// ignore-mips64 // ignore-mips64
// ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64
// compile-flags: -O // compile-flags: -O

View File

@ -14,6 +14,8 @@
// ignore-s390x // ignore-s390x
// ignore-emscripten // ignore-emscripten
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64
// ignore-mips // ignore-mips

View File

@ -11,6 +11,8 @@
// ignore-s390x // ignore-s390x
// ignore-emscripten // ignore-emscripten
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64
// ignore-mips // ignore-mips

View File

@ -14,6 +14,8 @@
// ignore-s390x // ignore-s390x
// ignore-emscripten // ignore-emscripten
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64
// ignore-mips // ignore-mips

View File

@ -11,6 +11,8 @@
// ignore-s390x // ignore-s390x
// ignore-emscripten // ignore-emscripten
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64
// ignore-mips // ignore-mips

View File

@ -11,6 +11,8 @@
// ignore-s390x // ignore-s390x
// ignore-emscripten // ignore-emscripten
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64
// ignore-mips // ignore-mips

View File

@ -11,6 +11,8 @@
// ignore-s390x // ignore-s390x
// ignore-emscripten // ignore-emscripten
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64

View File

@ -11,6 +11,8 @@
// ignore-s390x // ignore-s390x
// ignore-emscripten // ignore-emscripten
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64
// ignore-mips // ignore-mips

View File

@ -1,5 +1,5 @@
error[E0384]: cannot assign twice to immutable variable `x` 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; LL | x = 1;
| ----- first assignment to `x` | ----- first assignment to `x`

View File

@ -14,6 +14,8 @@
// ignore-emscripten // ignore-emscripten
// ignore-mips // ignore-mips
// ignore-powerpc // ignore-powerpc
// ignore-powerpc64
// ignore-powerpc64le
// ignore-s390x // ignore-s390x
// ignore-sparc // ignore-sparc
// ignore-sparc64 // ignore-sparc64

View File

@ -1,35 +1,35 @@
error: #[target_feature] attribute must be of the form #[target_feature(..)] 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"] LL | #[target_feature = "+sse2"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the feature named `foo` is not valid for this target 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")] LL | #[target_feature(enable = "foo")]
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
error: #[target_feature(..)] only accepts sub-keys of `enable` currently 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)] LL | #[target_feature(bar)]
| ^^^ | ^^^
error: #[target_feature(..)] only accepts sub-keys of `enable` currently 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")] LL | #[target_feature(disable = "baz")]
| ^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^
error: #[target_feature(..)] can only be applied to `unsafe` function 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")] LL | #[target_feature(enable = "sse2")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: attribute should be applied to a function 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")] LL | #[target_feature(enable = "sse2")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@ -38,7 +38,7 @@ LL | mod another {}
| -------------- not a function | -------------- not a function
error: cannot use #[inline(always)] with #[target_feature] 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)] LL | #[inline(always)]
| ^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^