diff options
author | Lei Zhang <thestig@chromium.org> | 2018-08-24 16:06:30 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-24 16:06:30 +0000 |
commit | 284c5139836cab74457d78c5c964d1afb24da860 (patch) | |
tree | 2816ff5d1f0dd95d96b8e42ecf6ff4de7b364ad3 | |
parent | 367ed462b51799c008795b19e886ccbed221b9be (diff) | |
download | pdfium-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-x | testing/tools/make_expected.sh | 2 |
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./'` |