File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,9 @@ fn test_sysroot() -> Path {
93
93
self_path. pop ( )
94
94
}
95
95
96
+ // Ignored on i686 -- see #6517
96
97
#[ test]
98
+ #[ ignore( cfg( target_arch = "x86" ) ) ]
97
99
fn test_make_dir_rwx ( ) {
98
100
let temp = & os:: tmpdir ( ) ;
99
101
let dir = temp. push ( ~"quux") ;
@@ -107,6 +109,7 @@ fn test_make_dir_rwx() {
107
109
}
108
110
109
111
#[ test]
112
+ #[ ignore( cfg( target_arch = "x86" ) ) ]
110
113
fn test_install_valid ( ) {
111
114
let sysroot = test_sysroot ( ) ;
112
115
debug ! ( "sysroot = %s" , sysroot. to_str( ) ) ;
@@ -132,6 +135,7 @@ fn test_install_valid() {
132
135
}
133
136
134
137
#[ test]
138
+ #[ ignore( cfg( target_arch = "x86" ) ) ]
135
139
fn test_install_invalid ( ) {
136
140
use conditions:: nonexistent_package:: cond;
137
141
use cond1 = conditions:: missing_pkg_files:: cond;
@@ -154,6 +158,7 @@ fn test_install_invalid() {
154
158
}
155
159
156
160
#[ test]
161
+ #[ ignore( cfg( target_arch = "x86" ) ) ]
157
162
fn test_install_url ( ) {
158
163
let workspace = mkdtemp ( & os:: tmpdir ( ) , "test" ) . expect ( "couldn't create temp dir" ) ;
159
164
let sysroot = test_sysroot ( ) ;
You can’t perform that action at this time.
0 commit comments