summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil.kumaran@linaro.org>2013-05-19 07:46:29 +0530
committerSenthil Kumaran <senthil.kumaran@linaro.org>2013-05-19 07:46:29 +0530
commit9a6c00ce27b87923a034bc7169d7a34e8cafa98a (patch)
tree8448813aa3f2cd9d6c5ea465cd9f6744110edbdd /android
parentb6e2f11a253df8c845a1b92e9b007280eac5a794 (diff)
Add glmark2 test for android.
Diffstat (limited to 'android')
-rw-r--r--android/glmark2.yaml11
-rw-r--r--android/scripts/glmark2.sh30
2 files changed, 41 insertions, 0 deletions
diff --git a/android/glmark2.yaml b/android/glmark2.yaml
new file mode 100644
index 0000000..b200e3b
--- /dev/null
+++ b/android/glmark2.yaml
@@ -0,0 +1,11 @@
+metadata:
+ format: "Lava-Test Test Definition 1.0"
+ name: glmark2
+ description: "glmark2 test for android."
+
+run:
+ steps:
+ - "./android/scripts/glmark2.sh"
+
+parse:
+ pattern: "^\\(\\s+\\d*\\):\\s+(?P<test_case_id>\\S+)\\:\\s(?P<units>\\S+):\\s(?P<measurement>[\\d.]+)\\s+\\S+:\\s[\\d.]+\\s\\S+\\s(?P<result>\\S+)"
diff --git a/android/scripts/glmark2.sh b/android/scripts/glmark2.sh
new file mode 100644
index 0000000..8377aa2
--- /dev/null
+++ b/android/scripts/glmark2.sh
@@ -0,0 +1,30 @@
+#!/system/bin/sh
+#
+# glmark2
+#
+# Copyright (C) 2013, Linaro Limited.
+#
+# 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 2
+# 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, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# owner: harigopal.gollamudi@linaro.org
+#
+
+logcat -c
+am start org.linaro.glmark2/.Glmark2Activity
+if logcat -v time | grep -qnri "Set up failed"
+then
+ echo "successfully exited"
+ logcat -d | grep "I/glmark2" | sed -e 's/] /_/g' -e 's/=/_/g' -e 's/,/_/g' -e 's/;/_/g' -e 's/<//g' -e 's/>//g' -e 's/\[//g' -e 's/\///g' -e 's/Iglmark2//g' -e 's/( 4435)://g' | awk 'BEGIN{FS=""} {print $0 " pass "}'
+ exit 0
+fi