@@ -4,15 +4,23 @@ use super::{Command, Output, Stdio};
4
4
use crate :: io:: ErrorKind ;
5
5
use crate :: str;
6
6
7
- // FIXME(#10380) these tests should not all be ignored on android.
7
+ #[ cfg( target_os = "android" ) ]
8
+ fn shell_cmd ( ) -> Command {
9
+ Command :: new ( "/system/bin/sh" )
10
+ }
11
+
12
+ #[ cfg( not( target_os = "android" ) ) ]
13
+ fn shell_cmd ( ) -> Command {
14
+ Command :: new ( "/bin/sh" )
15
+ }
8
16
9
17
#[ test]
10
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
18
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
11
19
fn smoke ( ) {
12
20
let p = if cfg ! ( target_os = "windows" ) {
13
21
Command :: new ( "cmd" ) . args ( & [ "/C" , "exit 0" ] ) . spawn ( )
14
22
} else {
15
- Command :: new ( "true" ) . spawn ( )
23
+ shell_cmd ( ) . arg ( "-c" ) . arg ( "true" ) . spawn ( )
16
24
} ;
17
25
assert ! ( p. is_ok( ) ) ;
18
26
let mut p = p. unwrap ( ) ;
@@ -29,12 +37,12 @@ fn smoke_failure() {
29
37
}
30
38
31
39
#[ test]
32
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
40
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
33
41
fn exit_reported_right ( ) {
34
42
let p = if cfg ! ( target_os = "windows" ) {
35
43
Command :: new ( "cmd" ) . args ( & [ "/C" , "exit 1" ] ) . spawn ( )
36
44
} else {
37
- Command :: new ( "false" ) . spawn ( )
45
+ shell_cmd ( ) . arg ( "-c" ) . arg ( "false" ) . spawn ( )
38
46
} ;
39
47
assert ! ( p. is_ok( ) ) ;
40
48
let mut p = p. unwrap ( ) ;
@@ -44,12 +52,11 @@ fn exit_reported_right() {
44
52
45
53
#[ test]
46
54
#[ cfg( unix) ]
47
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
55
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
48
56
fn signal_reported_right ( ) {
49
57
use crate :: os:: unix:: process:: ExitStatusExt ;
50
58
51
- let mut p =
52
- Command :: new ( "/bin/sh" ) . arg ( "-c" ) . arg ( "read a" ) . stdin ( Stdio :: piped ( ) ) . spawn ( ) . unwrap ( ) ;
59
+ let mut p = shell_cmd ( ) . arg ( "-c" ) . arg ( "read a" ) . stdin ( Stdio :: piped ( ) ) . spawn ( ) . unwrap ( ) ;
53
60
p. kill ( ) . unwrap ( ) ;
54
61
match p. wait ( ) . unwrap ( ) . signal ( ) {
55
62
Some ( 9 ) => { }
@@ -69,31 +76,31 @@ pub fn run_output(mut cmd: Command) -> String {
69
76
}
70
77
71
78
#[ test]
72
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
79
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
73
80
fn stdout_works ( ) {
74
81
if cfg ! ( target_os = "windows" ) {
75
82
let mut cmd = Command :: new ( "cmd" ) ;
76
83
cmd. args ( & [ "/C" , "echo foobar" ] ) . stdout ( Stdio :: piped ( ) ) ;
77
84
assert_eq ! ( run_output( cmd) , "foobar\r \n " ) ;
78
85
} else {
79
- let mut cmd = Command :: new ( "echo" ) ;
80
- cmd. arg ( "foobar" ) . stdout ( Stdio :: piped ( ) ) ;
86
+ let mut cmd = shell_cmd ( ) ;
87
+ cmd. arg ( "-c" ) . arg ( "echo foobar") . stdout ( Stdio :: piped ( ) ) ;
81
88
assert_eq ! ( run_output( cmd) , "foobar\n " ) ;
82
89
}
83
90
}
84
91
85
92
#[ test]
86
- #[ cfg_attr( any( windows, target_os = "android" , target_os = " vxworks") , ignore) ]
93
+ #[ cfg_attr( any( windows, target_os = "vxworks" ) , ignore) ]
87
94
fn set_current_dir_works ( ) {
88
- let mut cmd = Command :: new ( "/bin/sh" ) ;
95
+ let mut cmd = shell_cmd ( ) ;
89
96
cmd. arg ( "-c" ) . arg ( "pwd" ) . current_dir ( "/" ) . stdout ( Stdio :: piped ( ) ) ;
90
97
assert_eq ! ( run_output( cmd) , "/\n " ) ;
91
98
}
92
99
93
100
#[ test]
94
- #[ cfg_attr( any( windows, target_os = "android" , target_os = " vxworks") , ignore) ]
101
+ #[ cfg_attr( any( windows, target_os = "vxworks" ) , ignore) ]
95
102
fn stdin_works ( ) {
96
- let mut p = Command :: new ( "/bin/sh" )
103
+ let mut p = shell_cmd ( )
97
104
. arg ( "-c" )
98
105
. arg ( "read line; echo $line" )
99
106
. stdin ( Stdio :: piped ( ) )
@@ -109,19 +116,19 @@ fn stdin_works() {
109
116
}
110
117
111
118
#[ test]
112
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
119
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
113
120
fn test_process_status ( ) {
114
121
let mut status = if cfg ! ( target_os = "windows" ) {
115
122
Command :: new ( "cmd" ) . args ( & [ "/C" , "exit 1" ] ) . status ( ) . unwrap ( )
116
123
} else {
117
- Command :: new ( "false" ) . status ( ) . unwrap ( )
124
+ shell_cmd ( ) . arg ( "-c" ) . arg ( "false" ) . status ( ) . unwrap ( )
118
125
} ;
119
126
assert ! ( status. code( ) == Some ( 1 ) ) ;
120
127
121
128
status = if cfg ! ( target_os = "windows" ) {
122
129
Command :: new ( "cmd" ) . args ( & [ "/C" , "exit 0" ] ) . status ( ) . unwrap ( )
123
130
} else {
124
- Command :: new ( "true" ) . status ( ) . unwrap ( )
131
+ shell_cmd ( ) . arg ( "-c" ) . arg ( "true" ) . status ( ) . unwrap ( )
125
132
} ;
126
133
assert ! ( status. success( ) ) ;
127
134
}
@@ -135,12 +142,12 @@ fn test_process_output_fail_to_start() {
135
142
}
136
143
137
144
#[ test]
138
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
145
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
139
146
fn test_process_output_output ( ) {
140
147
let Output { status, stdout, stderr } = if cfg ! ( target_os = "windows" ) {
141
148
Command :: new ( "cmd" ) . args ( & [ "/C" , "echo hello" ] ) . output ( ) . unwrap ( )
142
149
} else {
143
- Command :: new ( "echo ") . arg ( "hello" ) . output ( ) . unwrap ( )
150
+ shell_cmd ( ) . arg ( "-c ") . arg ( "echo hello" ) . output ( ) . unwrap ( )
144
151
} ;
145
152
let output_str = str:: from_utf8 ( & stdout) . unwrap ( ) ;
146
153
@@ -150,49 +157,50 @@ fn test_process_output_output() {
150
157
}
151
158
152
159
#[ test]
153
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
160
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
154
161
fn test_process_output_error ( ) {
155
162
let Output { status, stdout, stderr } = if cfg ! ( target_os = "windows" ) {
156
163
Command :: new ( "cmd" ) . args ( & [ "/C" , "mkdir ." ] ) . output ( ) . unwrap ( )
157
164
} else {
158
165
Command :: new ( "mkdir" ) . arg ( "./" ) . output ( ) . unwrap ( )
159
166
} ;
160
167
161
- assert ! ( status. code( ) == Some ( 1 ) ) ;
168
+ assert ! ( status. code( ) . is_some( ) ) ;
169
+ assert ! ( status. code( ) != Some ( 0 ) ) ;
162
170
assert_eq ! ( stdout, Vec :: new( ) ) ;
163
171
assert ! ( !stderr. is_empty( ) ) ;
164
172
}
165
173
166
174
#[ test]
167
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
175
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
168
176
fn test_finish_once ( ) {
169
177
let mut prog = if cfg ! ( target_os = "windows" ) {
170
178
Command :: new ( "cmd" ) . args ( & [ "/C" , "exit 1" ] ) . spawn ( ) . unwrap ( )
171
179
} else {
172
- Command :: new ( "false" ) . spawn ( ) . unwrap ( )
180
+ shell_cmd ( ) . arg ( "-c" ) . arg ( "false" ) . spawn ( ) . unwrap ( )
173
181
} ;
174
182
assert ! ( prog. wait( ) . unwrap( ) . code( ) == Some ( 1 ) ) ;
175
183
}
176
184
177
185
#[ test]
178
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
186
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
179
187
fn test_finish_twice ( ) {
180
188
let mut prog = if cfg ! ( target_os = "windows" ) {
181
189
Command :: new ( "cmd" ) . args ( & [ "/C" , "exit 1" ] ) . spawn ( ) . unwrap ( )
182
190
} else {
183
- Command :: new ( "false" ) . spawn ( ) . unwrap ( )
191
+ shell_cmd ( ) . arg ( "-c" ) . arg ( "false" ) . spawn ( ) . unwrap ( )
184
192
} ;
185
193
assert ! ( prog. wait( ) . unwrap( ) . code( ) == Some ( 1 ) ) ;
186
194
assert ! ( prog. wait( ) . unwrap( ) . code( ) == Some ( 1 ) ) ;
187
195
}
188
196
189
197
#[ test]
190
- #[ cfg_attr( any( target_os = "vxworks" , target_os = "android" ) , ignore) ]
198
+ #[ cfg_attr( any( target_os = "vxworks" ) , ignore) ]
191
199
fn test_wait_with_output_once ( ) {
192
200
let prog = if cfg ! ( target_os = "windows" ) {
193
201
Command :: new ( "cmd" ) . args ( & [ "/C" , "echo hello" ] ) . stdout ( Stdio :: piped ( ) ) . spawn ( ) . unwrap ( )
194
202
} else {
195
- Command :: new ( "echo ") . arg ( "hello" ) . stdout ( Stdio :: piped ( ) ) . spawn ( ) . unwrap ( )
203
+ shell_cmd ( ) . arg ( "-c ") . arg ( "echo hello" ) . stdout ( Stdio :: piped ( ) ) . spawn ( ) . unwrap ( )
196
204
} ;
197
205
198
206
let Output { status, stdout, stderr } = prog. wait_with_output ( ) . unwrap ( ) ;
0 commit comments