Recognize SPARC in more tests where architecture matters.

This commit is contained in:
Danek Duvall 2017-08-03 17:19:19 -07:00
parent 497c5a34da
commit 9144755a91
8 changed files with 10 additions and 0 deletions

View File

@ -14,6 +14,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc
#![feature(asm, rustc_attrs)]

View File

@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc
#![feature(asm)]

View File

@ -14,6 +14,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc
#![feature(asm, rustc_attrs)]

View File

@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc
#![feature(asm)]

View File

@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc
#![feature(asm)]

View File

@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc
#![feature(asm)]

View File

@ -39,3 +39,6 @@ pub fn main() { }
#[cfg(target_arch = "wasm32")]
pub fn main() { }
#[cfg(target_arch = "sparc64")]
pub fn main() { }

View File

@ -12,6 +12,7 @@
// FIXME: This test case makes little-endian assumptions.
// ignore-s390x
// ignore-sparc
extern crate union;
use std::mem::{size_of, align_of, zeroed};