Skip to content

Commit 54467ae

Browse files
committed
test: ignore asm tests on mips* which won't work
"mov" is not a valid assembly mnemonic on mips.
1 parent e0863c5 commit 54467ae

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
// ignore-emscripten
1616
// ignore-powerpc
1717
// ignore-sparc
18+
// ignore-mips
19+
// ignore-mips64
1820

1921
#![feature(asm, rustc_attrs)]
2022

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// ignore-emscripten
1313
// ignore-powerpc
1414
// ignore-sparc
15+
// ignore-mips
16+
// ignore-mips64
1517

1618
#![feature(asm)]
1719

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
// ignore-emscripten
1616
// ignore-powerpc
1717
// ignore-sparc
18+
// ignore-mips
19+
// ignore-mips64
1820

1921
#![feature(asm, rustc_attrs)]
2022

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// ignore-emscripten
1313
// ignore-powerpc
1414
// ignore-sparc
15+
// ignore-mips
16+
// ignore-mips64
1517

1618
#![feature(asm)]
1719

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// ignore-emscripten
1313
// ignore-powerpc
1414
// ignore-sparc
15+
// ignore-mips
16+
// ignore-mips64
1517

1618
// revisions: ast mir
1719
//[mir]compile-flags: -Z borrowck=mir

0 commit comments

Comments
 (0)