Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: gm/tests/run.sh

Issue 128793002: fix gm self-test (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/tests/run.sh
diff --git a/gm/tests/run.sh b/gm/tests/run.sh
index bd21fd8f97b4e997020b5ea2a87997553e0b1ee4..0eb4d8ae142c7be607aecf946009f00081b40d4f 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698