Skip to content

Commit

Permalink
Recognize SPARC in more tests where architecture matters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danek Duvall committed Aug 4, 2017
1 parent 497c5a3 commit 9144755
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/test/compile-fail/asm-bad-clobber.rs
Expand Up @@ -14,6 +14,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc

#![feature(asm, rustc_attrs)]

Expand Down
1 change: 1 addition & 0 deletions src/test/compile-fail/asm-in-bad-modifier.rs
Expand Up @@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc

#![feature(asm)]

Expand Down
1 change: 1 addition & 0 deletions src/test/compile-fail/asm-misplaced-option.rs
Expand Up @@ -14,6 +14,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc

#![feature(asm, rustc_attrs)]

Expand Down
1 change: 1 addition & 0 deletions src/test/compile-fail/asm-out-assign-imm.rs
Expand Up @@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc

#![feature(asm)]

Expand Down
1 change: 1 addition & 0 deletions src/test/compile-fail/asm-out-no-modifier.rs
Expand Up @@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc

#![feature(asm)]

Expand Down
1 change: 1 addition & 0 deletions src/test/compile-fail/asm-out-read-uninit.rs
Expand Up @@ -11,6 +11,7 @@
// ignore-s390x
// ignore-emscripten
// ignore-powerpc
// ignore-sparc

#![feature(asm)]

Expand Down
3 changes: 3 additions & 0 deletions src/test/run-pass/conditional-compile-arch.rs
Expand Up @@ -39,3 +39,6 @@ pub fn main() { }

#[cfg(target_arch = "wasm32")]
pub fn main() { }

#[cfg(target_arch = "sparc64")]
pub fn main() { }
1 change: 1 addition & 0 deletions src/test/run-pass/union/union-basic.rs
Expand Up @@ -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};
Expand Down

0 comments on commit 9144755

Please sign in to comment.