Sign in
android
/
platform
/
external
/
autotest
/
8c930ce92a4e062550127e0e474515ff691f7c16
/
.
/
server
/
tests
/
cleanup_test
/
cleanup_test.py
blob: f79781791e33282378a4afacc2e4c40d84a9f7e1 [
file
] [
log
] [
blame
]
from
autotest_lib
.
server
import
test
from
autotest_lib
.
client
.
common_lib
import
error
class
cleanup_test
(
test
.
test
):
version
=
1
def
execute
(
self
,
host
):
try
:
host
.
cleanup
()
except
Exception
,
e
:
raise
error
.
TestError
(
"Cleanup failed: "
+
str
(
e
))