summaryrefslogtreecommitdiff
path: root/android/scripts/piglit-run-glslparser.sh
diff options
context:
space:
mode:
Diffstat (limited to 'android/scripts/piglit-run-glslparser.sh')
-rwxr-xr-xandroid/scripts/piglit-run-glslparser.sh60
1 files changed, 45 insertions, 15 deletions
diff --git a/android/scripts/piglit-run-glslparser.sh b/android/scripts/piglit-run-glslparser.sh
index 1cd7494..e3f58bc 100755
--- a/android/scripts/piglit-run-glslparser.sh
+++ b/android/scripts/piglit-run-glslparser.sh
@@ -1,34 +1,64 @@
#!/system/bin/sh
+#
+# piglit glslparser test.
+#
+# Copyright (C) 2014, 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: yongqin.liu@linaro.org
+#
+###############################################################################
# find and loop over the vert and frag tests found
# looks recursively down the directory tree
-
-find ${2} -name "*.frag" -or -name "*.vert" -print0 | while read -d $'\0' file
+export PIGLIT_PLATFORM=android
+bin_path="/system/xbin/piglit/glslparsertest/glslparsertest"
+data_dir="/data/piglit/glslparser/"
+/system/bin/busybox find ${data_dir} -name "*.frag" -or -name "*.vert" -print0 | while read -d $'\0' file
do
RESULTFOUND=$(grep expect_result ${file} )
case $RESULTFOUND in
*fail*) RESULTEXPECTED="fail";;
-
*pass*) RESULTEXPECTED="pass";;
-
*) RESULTEXPECTED="pass";;
esac
- RESULT=$( ${1} ${file} $RESULTEXPECTED 1.00 -auto )
+ check_link=$(grep check_link ${file})
+ case "${check_link}" in
+ *true*) check_link="--check-link";;
+ *) check_link="";;
+ esac
- PSTRING="PIGLIT: {'result': 'pass'"
- SSTRING="PIGLIT: {'result': 'skip'"
- FSTRING="PIGLIT: {'result': 'fail'"
+ required_version=$(grep 'glsl_version:' ${file})
+ case "${check_link}" in
+ *3.00*) required_version="3.00";;
+ *) required_version="1.00";;
+ esac
- case $RESULT in
- *"$PSTRING"*)
- echo "glslparser ${file}: pass";;
+ RESULT=$(${bin_path} ${check_link} ${file} $RESULTEXPECTED ${required_version})
- *"$SSTRING"*) echo "glslparser ${file}: skip";;
-
- *"$FSTRING"*)
- echo "glslparser ${file}: fail";;
+ PSTRING='PIGLIT: {"result": "pass"'
+ SSTRING='PIGLIT: {"result": "skip"'
+ FSTRING='PIGLIT: {"result": "fail"'
+ case $RESULT in
+ *"$PSTRING"*) echo "glslparser ${file}: pass";;
+ *"$SSTRING"*) echo "glslparser ${file}: skip";;
+ *"$FSTRING"*) echo "glslparser ${file}: fail";;
*) echo "glslparser ${file}: fail";;
esac
done