gecko-dev/testing/web-platform/tests/ci_built_diff.sh
2017-02-04 09:38:58 +00:00

18 lines
634 B
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

set -ex
# Diff PNGs based on pixel-for-pixel identity
echo -e '[diff "img"]\n textconv = identify -quiet -format "%#"' >> .git/config
echo -e '*.png diff=img' >> .git/info/attributes
# Exclude tests that rely on font rendering
excluded=(
'2dcontext/drawing-text-to-the-canvas/2d.text.draw.fill.basic.png'
'2dcontext/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.large.png'
'2dcontext/drawing-text-to-the-canvas/2d.text.draw.fill.rtl.png'
'2dcontext/drawing-text-to-the-canvas/2d.text.draw.stroke.basic.png'
)
./update-built-tests.sh
git update-index --assume-unchanged ${excluded[*]}
git diff --exit-code