Sign in
android-kvm
/
buildroot
/
00e644adb182681a51d39375d70d0a888d0b950f
/
.
/
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
)