Skip to content

Commit 1ab23ea

Browse files
committed
Un-ignore rusti/rustpkg tests on i686
1 parent 74508d6 commit 1ab23ea

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/librusti/rusti.rc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,8 +453,9 @@ mod tests {
453453
}
454454
}
455455

456-
#[test] #[ignore]
456+
#[test]
457457
fn run_all() {
458+
// FIXME(#6511):
458459
// By default, unit tests are run in parallel. Rusti, on the other hand,
459460
// does not enjoy doing this. I suspect that it is because the LLVM
460461
// bindings are not thread-safe (when running parallel tests, some tests
@@ -467,7 +468,7 @@ mod tests {
467468
run_cmds([""]);
468469

469470
debug!("regression test for #5937");
470-
run_cmds(["use core;", ""]);
471+
run_cmds(["use std;", ""]);
471472

472473
debug!("regression test for #5784");
473474
run_cmds(["let a = 1;"]);

src/librustpkg/tests.rs

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

96-
// Ignored on i686 -- see #6517
9796
#[test]
98-
#[ignore(cfg(target_arch = "x86"))]
9997
fn test_make_dir_rwx() {
10098
let temp = &os::tmpdir();
10199
let dir = temp.push(~"quux");
@@ -109,7 +107,6 @@ fn test_make_dir_rwx() {
109107
}
110108

111109
#[test]
112-
#[ignore(cfg(target_arch = "x86"))]
113110
fn test_install_valid() {
114111
let sysroot = test_sysroot();
115112
debug!("sysroot = %s", sysroot.to_str());
@@ -135,7 +132,6 @@ fn test_install_valid() {
135132
}
136133

137134
#[test]
138-
#[ignore(cfg(target_arch = "x86"))]
139135
fn test_install_invalid() {
140136
use conditions::nonexistent_package::cond;
141137
use cond1 = conditions::missing_pkg_files::cond;
@@ -158,7 +154,6 @@ fn test_install_invalid() {
158154
}
159155

160156
#[test]
161-
#[ignore(cfg(target_arch = "x86"))]
162157
fn test_install_url() {
163158
let workspace = mkdtemp(&os::tmpdir(), "test").expect("couldn't create temp dir");
164159
let sysroot = test_sysroot();

0 commit comments

Comments
 (0)