aboutsummaryrefslogtreecommitdiff
path: root/lava_android_test/test_definitions/install_prep_4bench.py
diff options
context:
space:
mode:
Diffstat (limited to 'lava_android_test/test_definitions/install_prep_4bench.py')
-rw-r--r--lava_android_test/test_definitions/install_prep_4bench.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/lava_android_test/test_definitions/install_prep_4bench.py b/lava_android_test/test_definitions/install_prep_4bench.py
new file mode 100644
index 0000000..2687adc
--- /dev/null
+++ b/lava_android_test/test_definitions/install_prep_4bench.py
@@ -0,0 +1,46 @@
+# Copyright (c) 2012 Linaro
+
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Android Test.
+#
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+"""
+Remove the Linaro wallpaper before start the benchmark test
+
+**URL:** None
+
+**Default options:** None
+"""
+import lava_android_test.config
+import lava_android_test.testdef
+
+test_name = 'install_prep_4bench'
+
+INSTALL_STEPS_ADB_PRE = []
+ADB_SHELL_STEPS = ['rm /data/system/wallpaper_info.xml',
+ "echo install_prep_4bench.wallpaper: PASS"]
+PATTERN = "^\s*(?P<test_case_id>[^:]+?):\s+(?P<result>(PASS|FAIL)?)\s*$"
+
+inst = lava_android_test.testdef.AndroidTestInstaller(
+ steps_adb_pre=INSTALL_STEPS_ADB_PRE)
+run = lava_android_test.testdef.AndroidTestRunner(
+ adbshell_steps=ADB_SHELL_STEPS)
+parser = lava_android_test.testdef.AndroidTestParser(PATTERN)
+testobj = lava_android_test.testdef.AndroidTest(testname=test_name,
+ installer=inst,
+ runner=run,
+ parser=parser)