summaryrefslogtreecommitdiff
path: root/testing/tools/make_expected.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tools/make_expected.sh')
-rwxr-xr-xtesting/tools/make_expected.sh17
1 files changed, 11 insertions, 6 deletions
diff --git a/testing/tools/make_expected.sh b/testing/tools/make_expected.sh
index 793c3f5b66..a70df797c2 100755
--- a/testing/tools/make_expected.sh
+++ b/testing/tools/make_expected.sh
@@ -13,14 +13,19 @@ set -e
while (( "$#" )); do
INFILE="$1"
echo $INFILE | grep -qs ' ' && echo space in filename detected && exit 1
- out/Debug/pdfium_test --png $INFILE
+ EVTFILE="${INFILE%.*}.evt"
+ if [ -f "$EVTFILE" ]; then
+ out/Debug/pdfium_test --send-events --png $INFILE
+ else
+ out/Debug/pdfium_test --png $INFILE
+ fi
RESULTS="$INFILE.*.png"
for RESULT in $RESULTS ; do
- EXPECTED=`echo -n $RESULT | sed 's/[.]pdf[.]/_expected.pdf./'`
- mv $RESULT $EXPECTED
- if [ -n "$PNGOPTIMIZER" ]; then
- "$PNGOPTIMIZER" $EXPECTED
- fi
+ EXPECTED=`echo -n $RESULT | sed 's/[.]pdf[.]/_expected.pdf./'`
+ mv $RESULT $EXPECTED
+ if [ -n "$PNGOPTIMIZER" ]; then
+ "$PNGOPTIMIZER" $EXPECTED
+ fi
done
shift
done