Skip to content

Commit 7dbfc50

Browse files
authoredDec 21, 2018
Rollup merge of rust-lang#56914 - glaubitz:ignore-tests, r=alexcrichton
Ignore ui/target-feature-gate on sparc, sparc64, powerpc, powerpc64 and powerpc64le The test ui/target-feature-gate is not applicable on sparc, sparc64, powerpc, powerpc64 and powerpc64le and consequently fails there. So just ignore it on these targets.
2 parents fafd715 + a153d48 commit 7dbfc50

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎src/test/ui/target-feature-gate.rs

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
// ignore-emscripten
1515
// ignore-mips
1616
// ignore-mips64
17+
// ignore-powerpc
18+
// ignore-powerpc64
19+
// ignore-powerpc64le
20+
// ignore-sparc
21+
// ignore-sparc64
1722
// gate-test-sse4a_target_feature
1823
// gate-test-powerpc_target_feature
1924
// gate-test-avx512_target_feature

‎src/test/ui/target-feature-gate.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0658]: the target feature `avx512bw` is currently unstable (see issue #44839)
2-
--> $DIR/target-feature-gate.rs:31:18
2+
--> $DIR/target-feature-gate.rs:36:18
33
|
44
LL | #[target_feature(enable = "avx512bw")]
55
| ^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)