summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-08-24 16:06:30 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-24 16:06:30 +0000
commit284c5139836cab74457d78c5c964d1afb24da860 (patch)
tree2816ff5d1f0dd95d96b8e42ecf6ff4de7b364ad3
parent367ed462b51799c008795b19e886ccbed221b9be (diff)
downloadpdfium-284c5139836cab74457d78c5c964d1afb24da860.tar.xz
Fix a bug in make_expected.sh.
$SEND_EVENTS should not have been put in quotes. Change-Id: Ia6bf7d1ac463c320c0afccf819becbb0cebf13ab Reviewed-on: https://pdfium-review.googlesource.com/41330 Commit-Queue: Ryan Harrison <rharrison@chromium.org> Reviewed-by: Ryan Harrison <rharrison@chromium.org>
-rwxr-xr-xtesting/tools/make_expected.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tools/make_expected.sh b/testing/tools/make_expected.sh
index d4d219ae99..5237e51e33 100755
--- a/testing/tools/make_expected.sh
+++ b/testing/tools/make_expected.sh
@@ -23,7 +23,7 @@ while (( "$#" )); do
if [ -f "$EVTFILE" ]; then
SEND_EVENTS="--send-events"
fi
- out/Debug/pdfium_test "$SEND_EVENTS" --time=$TEST_SEED_TIME --png $INFILE
+ out/Debug/pdfium_test $SEND_EVENTS --time=$TEST_SEED_TIME --png $INFILE
RESULTS="$INFILE.*.png"
for RESULT in $RESULTS ; do
EXPECTED=`echo -n $RESULT | sed 's/[.]pdf[.]/_expected.pdf./'`