Skip to content

Commit 9144755

Browse files
author
Danek Duvall
committed
Recognize SPARC in more tests where architecture matters.
1 parent 497c5a3 commit 9144755

8 files changed

+10
-0
lines changed

src/test/compile-fail/asm-bad-clobber.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// ignore-s390x
1515
// ignore-emscripten
1616
// ignore-powerpc
17+
// ignore-sparc
1718

1819
#![feature(asm, rustc_attrs)]
1920

src/test/compile-fail/asm-in-bad-modifier.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// ignore-s390x
1212
// ignore-emscripten
1313
// ignore-powerpc
14+
// ignore-sparc
1415

1516
#![feature(asm)]
1617

src/test/compile-fail/asm-misplaced-option.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// ignore-s390x
1515
// ignore-emscripten
1616
// ignore-powerpc
17+
// ignore-sparc
1718

1819
#![feature(asm, rustc_attrs)]
1920

src/test/compile-fail/asm-out-assign-imm.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// ignore-s390x
1212
// ignore-emscripten
1313
// ignore-powerpc
14+
// ignore-sparc
1415

1516
#![feature(asm)]
1617

src/test/compile-fail/asm-out-no-modifier.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// ignore-s390x
1212
// ignore-emscripten
1313
// ignore-powerpc
14+
// ignore-sparc
1415

1516
#![feature(asm)]
1617

src/test/compile-fail/asm-out-read-uninit.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// ignore-s390x
1212
// ignore-emscripten
1313
// ignore-powerpc
14+
// ignore-sparc
1415

1516
#![feature(asm)]
1617

src/test/run-pass/conditional-compile-arch.rs

+3
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,6 @@ pub fn main() { }
3939

4040
#[cfg(target_arch = "wasm32")]
4141
pub fn main() { }
42+
43+
#[cfg(target_arch = "sparc64")]
44+
pub fn main() { }

src/test/run-pass/union/union-basic.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
// FIXME: This test case makes little-endian assumptions.
1414
// ignore-s390x
15+
// ignore-sparc
1516

1617
extern crate union;
1718
use std::mem::{size_of, align_of, zeroed};

0 commit comments

Comments
 (0)