File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed 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