Sign in
android
/
platform
/
external
/
toolchain-utils
/
f1a93c225b92dc0059e7d7e2de7c7bd0a493e23d
/
.
/
binary_search_tool
/
test
/
test_setup_bad.py
blob: d715f57ae17a5e677040bd886cdf808df5a355d5 [
file
]
#!/usr/bin/env python2
"""Emulate test setup that fails (i.e. failed flash to device)"""
from
__future__
import
print_function
import
sys
def
Main
():
return
1
## False, flashing failure
if
__name__
==
'__main__'
:
retval
=
Main
()
sys
.
exit
(
retval
)