Sign in
android-kvm
/
buildroot
/
f403309ed8ff1db2c91e304c59cb3b10ac16cc45
/
.
/
support
/
testing
/
tests
/
package
/
sample_python_subprocess32.py
blob: 8579745cc80ff0c81bd297cf5105ca7842e516b3 [
file
] [
log
] [
blame
]
import
subprocess32
output
=
subprocess32
.
check_output
([
"ls"
,
"-l"
,
"/dev/null"
])
print
(
output
)
assert
(
"/dev/null"
in
output
)
assert
(
"No such"
not
in
output
)