Skip to content

Commit 95f038b

Browse files
committed
---
yaml --- r: 62805 b: refs/heads/snap-stage3 c: ba33472 h: refs/heads/master i: 62803: c3032be v: v3
1 parent 59429fa commit 95f038b

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: ff86830c9c2c0e4e88070206bd73f88ad7141b1e
4+
refs/heads/snap-stage3: ba33472f9f74c508b9f028703aa6f226b7dfd7c2
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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;"]);

branches/snap-stage3/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)