2014-01-14 02:54:11 +00:00
|
|
|
# Failures of any GM tests listed in this file will be ignored [1], as
|
2013-10-24 14:42:19 +00:00
|
|
|
# if they had been marked "ignore-failure": true in the per-builder
|
2013-09-19 17:41:41 +00:00
|
|
|
# expected-results.json files.
|
|
|
|
#
|
|
|
|
# The idea is that, if you modify a GM test in such a way that you know it will
|
|
|
|
# require rebaselines on multiple platforms, you should add that test's name to
|
|
|
|
# this list within the same CL that modifies the test.
|
|
|
|
# Then, AS SOON AS POSSIBLE, you should rebaseline the tests (they will show up
|
|
|
|
# as status "failure-ignored") and remove the line you added to this file.
|
|
|
|
# If there are any lingering failures that need to be suppressed (ignored), you
|
|
|
|
# MUST move those suppressions into the per-builder expected-results.json files.
|
|
|
|
#
|
2014-01-14 02:54:11 +00:00
|
|
|
# The test name must match exactly (no partial string matches).
|
|
|
|
# See http://skbug.com/2022
|
|
|
|
#
|
2013-09-19 17:41:41 +00:00
|
|
|
# Any lines starting with '#' are comments and will be ignored.
|
|
|
|
# Other than that, each line must either be whitespace or list just one test.
|
|
|
|
#
|
|
|
|
# For more information, see https://code.google.com/p/skia/issues/detail?id=1600
|
|
|
|
# ('GM expectations: create tool to suppress failures until new baselines are
|
|
|
|
# checked in')
|
2013-10-24 14:42:19 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# [1] Differences between renderModes (e.g., normal rendering path and
|
|
|
|
# "serialized") are NEVER ignored. See
|
|
|
|
# https://code.google.com/p/skia/issues/detail?id=1748 ('gm: add new result
|
|
|
|
# type, RenderModeMismatch')
|
2013-09-19 17:41:41 +00:00
|
|
|
|
2013-10-07 18:55:09 +00:00
|
|
|
# EXAMPLES: (remove the first '#' on each line)
|
|
|
|
#
|
|
|
|
## Added by epoger as part of MADE-UP BUG
|
|
|
|
## https://code.google.com/p/skia/issues/detail?id=123456 : ignoring failures on
|
2014-01-14 02:54:11 +00:00
|
|
|
## gradtext GM test
|
2014-02-04 17:49:48 +00:00
|
|
|
#gradtext
|
|
|
|
|
2014-02-25 18:54:34 +00:00
|
|
|
# This GM has probably always drawn incorrectly. We need to clarify the API
|
|
|
|
# https://skbug.com/2222
|
fix the visual difference of raster vs gpu -- inverse_paths
If a path has no verbs, it is empty. If a path has verbs, but both the width and height of the bounds are zero. the path is empty too. This situation happens when you add an empty rect or circle... , say a rect{x, y, width, height} = {100, 100, 0, 0}, to a path.
For 8888 config, drawPath() checked the bounds.
For gpu config, it doesn't.
BUG=skia:2176
R=reed@google.com, bsalomon@google.com, schenney@chromium.org
Author: yunchao.he@intel.com
Review URL: https://codereview.chromium.org/166023002
git-svn-id: http://skia.googlecode.com/svn/trunk@13526 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-02-21 05:42:57 +00:00
|
|
|
inverse_paths
|