Skip to content

Commit e732912

Browse files
committed
rustpkg: ignore tests on i686, since they fail
1 parent 5421bc2 commit e732912

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/librustpkg/tests.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ fn test_sysroot() -> Path {
9393
self_path.pop()
9494
}
9595

96+
// Ignored on i686 -- see #6517
9697
#[test]
98+
#[ignore(cfg(target_arch = "x86"))]
9799
fn test_make_dir_rwx() {
98100
let temp = &os::tmpdir();
99101
let dir = temp.push(~"quux");
@@ -107,6 +109,7 @@ fn test_make_dir_rwx() {
107109
}
108110

109111
#[test]
112+
#[ignore(cfg(target_arch = "x86"))]
110113
fn test_install_valid() {
111114
let sysroot = test_sysroot();
112115
debug!("sysroot = %s", sysroot.to_str());
@@ -132,6 +135,7 @@ fn test_install_valid() {
132135
}
133136

134137
#[test]
138+
#[ignore(cfg(target_arch = "x86"))]
135139
fn test_install_invalid() {
136140
use conditions::nonexistent_package::cond;
137141
use cond1 = conditions::missing_pkg_files::cond;
@@ -154,6 +158,7 @@ fn test_install_invalid() {
154158
}
155159

156160
#[test]
161+
#[ignore(cfg(target_arch = "x86"))]
157162
fn test_install_url() {
158163
let workspace = mkdtemp(&os::tmpdir(), "test").expect("couldn't create temp dir");
159164
let sysroot = test_sysroot();

0 commit comments

Comments
 (0)