File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: ff86830c9c2c0e4e88070206bd73f88ad7141b1e
17
+ refs/heads/auto: ba33472f9f74c508b9f028703aa6f226b7dfd7c2
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
19
19
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
Original file line number Diff line number Diff line change @@ -453,8 +453,9 @@ mod tests {
453
453
}
454
454
}
455
455
456
- #[test] #[ignore]
456
+ #[test]
457
457
fn run_all() {
458
+ // FIXME(#6511):
458
459
// By default, unit tests are run in parallel. Rusti, on the other hand,
459
460
// does not enjoy doing this. I suspect that it is because the LLVM
460
461
// bindings are not thread-safe (when running parallel tests, some tests
@@ -467,7 +468,7 @@ mod tests {
467
468
run_cmds([""]);
468
469
469
470
debug!("regression test for #5937");
470
- run_cmds(["use core ;", ""]);
471
+ run_cmds(["use std ;", ""]);
471
472
472
473
debug!("regression test for #5784");
473
474
run_cmds(["let a = 1;"]);
Original file line number Diff line number Diff line change @@ -93,9 +93,7 @@ fn test_sysroot() -> Path {
93
93
self_path. pop ( )
94
94
}
95
95
96
- // Ignored on i686 -- see #6517
97
96
#[ test]
98
- #[ ignore( cfg( target_arch = "x86" ) ) ]
99
97
fn test_make_dir_rwx ( ) {
100
98
let temp = & os:: tmpdir ( ) ;
101
99
let dir = temp. push ( ~"quux") ;
@@ -109,7 +107,6 @@ fn test_make_dir_rwx() {
109
107
}
110
108
111
109
#[ test]
112
- #[ ignore( cfg( target_arch = "x86" ) ) ]
113
110
fn test_install_valid ( ) {
114
111
let sysroot = test_sysroot ( ) ;
115
112
debug ! ( "sysroot = %s" , sysroot. to_str( ) ) ;
@@ -135,7 +132,6 @@ fn test_install_valid() {
135
132
}
136
133
137
134
#[ test]
138
- #[ ignore( cfg( target_arch = "x86" ) ) ]
139
135
fn test_install_invalid ( ) {
140
136
use conditions:: nonexistent_package:: cond;
141
137
use cond1 = conditions:: missing_pkg_files:: cond;
@@ -158,7 +154,6 @@ fn test_install_invalid() {
158
154
}
159
155
160
156
#[ test]
161
- #[ ignore( cfg( target_arch = "x86" ) ) ]
162
157
fn test_install_url ( ) {
163
158
let workspace = mkdtemp ( & os:: tmpdir ( ) , "test" ) . expect ( "couldn't create temp dir" ) ;
164
159
let sysroot = test_sysroot ( ) ;
You can’t perform that action at this time.
0 commit comments