aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-08 17:59:22 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-08 17:59:22 +0000
commit711ebb9dfafb2a841190ea48c17c7c24f1da954e (patch)
tree33ccd5d8d3779066f54d1ba1ef3fb5d6af893c48 /gm
parentd9c4dfb170a484f309b501115fd06d0e7135d0fd (diff)
fix gm self-test
BUG=skia:1971 NOTREECHECKS=True NOTRY=True R=caryclark@google.com TBR=caryclark Author: epoger@google.com Review URL: https://codereview.chromium.org/128793002 git-svn-id: http://skia.googlecode.com/svn/trunk@12964 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm')
-rwxr-xr-xgm/tests/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/gm/tests/run.sh b/gm/tests/run.sh
index bd21fd8f97..0eb4d8ae14 100755
--- a/gm/tests/run.sh
+++ b/gm/tests/run.sh
@@ -105,10 +105,10 @@ function gm_test {
# 1. Image file encoding may vary by platform
# 2. https://code.google.com/p/chromium/issues/detail?id=169600
# ('gcl/upload.py fail to upload binary files to rietveld')
- for IMAGEFILE in $(find $ACTUAL_OUTPUT_DIR -name *.png); do
+ for IMAGEFILE in $(find $ACTUAL_OUTPUT_DIR -name \*.png); do
echo "[contents of $IMAGEFILE]" >$IMAGEFILE
done
- for IMAGEFILE in $(find $ACTUAL_OUTPUT_DIR -name *.pdf); do
+ for IMAGEFILE in $(find $ACTUAL_OUTPUT_DIR -name \*.pdf); do
echo "[contents of $IMAGEFILE]" >$IMAGEFILE
done