https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9c265690381cc7dc0eddf307ca196a04d6d20e33 authored by Domenic Denicola on 30 June 2017, 20:45:47 UTC
Update for spec changes
Tip revision: 9c26569
ci_built_diff.sh
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
back to top