summaryrefslogtreecommitdiff
path: root/android/scripts/piglit-run-glslparser.sh
diff options
context:
space:
mode:
authorTom Gall <tom.gall@linaro.org>2013-03-27 11:16:02 -0500
committerTom Gall <tom.gall@linaro.org>2013-03-27 11:16:02 -0500
commitfd609be56a76f3c26d36cdfd49aa6ec289b5c4cf (patch)
treea079ef129bb6a1008d5795a5b3338492cc238e8d /android/scripts/piglit-run-glslparser.sh
parent25f59b687bc407cba9db951010ed54e2fe53aee0 (diff)
change to use better regex for initial find. Update paths correctly.
Diffstat (limited to 'android/scripts/piglit-run-glslparser.sh')
-rwxr-xr-xandroid/scripts/piglit-run-glslparser.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/android/scripts/piglit-run-glslparser.sh b/android/scripts/piglit-run-glslparser.sh
index 3a7325b..2673291 100755
--- a/android/scripts/piglit-run-glslparser.sh
+++ b/android/scripts/piglit-run-glslparser.sh
@@ -4,7 +4,7 @@ set -x
# find and loop over the vert and frag tests found
# looks recursively down the directory tree
-find ${2} -name *.vert -or -name *.frag -print0 | while read -d $'\0' file
+find ${2} -regex ".*\.\(vert\|frag\)" -print0 | while read -d $'\0' file
do
RESULTEXPECTED=$(grep expect_result ${file} )
case $RESULTEXPECTED in
@@ -24,22 +24,22 @@ do
case $RESULT in
*"$PSTRING"*)
if $RESULTEXPECTED = "pass"; then
- echo "${1}: pass"
+ echo "${1} ${file}: pass"
else
- echo "${1}: fail"
+ echo "${1} ${file}: fail"
fi
;;
- *"$SSTRING"*) echo "${1}: skip";;
+ *"$SSTRING"*) echo "${1} ${file}: skip";;
*"$FSTRING"*)
if $RESULTEXPECTED = "fail"; then
- echo "${1}: pass"
+ echo "${1} ${file}: pass"
else
- echo "${1}: fail"
+ echo "${1} ${file}: fail"
fi
;;
- *) echo "${1}: fail";;
+ *) echo "${1} ${file}: fail";;
esac
done