mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
17 lines
634 B
Bash
17 lines
634 B
Bash
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
|