Skip to content

Commit 8c56ef0

Browse files
committed
Fix tests using only-i686 to use the correct only-x86 directive
We translate `i686` to `x86` which means tests marked as `only-i686` never ran. Update those tests to use `only-x86`.
1 parent 37f70a0 commit 8c56ef0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/test/ui/extern/extern-methods.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// run-pass
2-
// only-i686
2+
// only-x86
33

44
trait A {
55
extern "fastcall" fn test1(i: i32);

src/test/ui/extern/extern-thiscall.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// run-pass
2-
// only-i686
2+
// only-x86
33

44
#![feature(abi_thiscall)]
55

src/test/ui/extern/extern-vectorcall.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// run-pass
22
// revisions: x64 x32
33
// [x64]only-x86_64
4-
// [x32]only-i686
4+
// [x32]only-x86
55

66
#![feature(abi_vectorcall)]
77

src/tools/compiletest/src/header/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ fn only_target() {
168168
let mut config = config();
169169
config.target = "x86_64-pc-windows-gnu".to_owned();
170170

171-
assert!(check_ignore(&config, "// only-i686"));
171+
assert!(check_ignore(&config, "// only-x86"));
172172
assert!(check_ignore(&config, "// only-linux"));
173173
assert!(check_ignore(&config, "// only-msvc"));
174174
assert!(check_ignore(&config, "// only-32bit"));

0 commit comments

Comments
 (0)