aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skqp/make_gmkb.go
diff options
context:
space:
mode:
authorGravatar Hal Canary <halcanary@google.com>2018-01-19 13:08:23 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-22 20:11:57 +0000
commita9de760a217cf48c974d6c51b4ba88f08c269bbe (patch)
tree16924fe7092b51a982ad667524440c5b6bbbe0e7 /tools/skqp/make_gmkb.go
parent3b428cbf8a2f4b8d4fad7f2708e67cf954ba7bf1 (diff)
SkQP: replace blacklist with: DoNotExecuteInExperimentalMode and NoScoreInCompatibilityTestMode
Also clean up some things, fix docs, whitelist. Change-Id: I2818d973978ffe1b8ce0cc9c69f8d91ab4a0ef22 Reviewed-on: https://skia-review.googlesource.com/91805 Reviewed-by: Hal Canary <halcanary@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
Diffstat (limited to 'tools/skqp/make_gmkb.go')
-rw-r--r--tools/skqp/make_gmkb.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/tools/skqp/make_gmkb.go b/tools/skqp/make_gmkb.go
index f839375d83..97e44e449e 100644
--- a/tools/skqp/make_gmkb.go
+++ b/tools/skqp/make_gmkb.go
@@ -44,39 +44,6 @@ func in(v string, a []string) bool {
return false
}
-// TODO(halcanary): clean up this blacklist.
-var blacklist = []string{
- "circular-clips",
- "colorcomposefilter_wacky",
- "coloremoji_blendmodes",
- "colormatrix",
- "complexclip_bw",
- "complexclip_bw_invert",
- "complexclip_bw_layer",
- "complexclip_bw_layer_invert",
- "convex-lineonly-paths-stroke-and-fill",
- "dftext",
- "downsamplebitmap_image_high_mandrill_512.png",
- "downsamplebitmap_image_medium_mandrill_512.png",
- "filterbitmap_image_mandrill_16.png",
- "filterbitmap_image_mandrill_64.png",
- "filterbitmap_image_mandrill_64.png_g8",
- "gradients_degenerate_2pt",
- "gradients_degenerate_2pt_nodither",
- "gradients_local_perspective",
- "gradients_local_perspective_nodither",
- "imagefilterstransformed",
- "image_scale_aligned",
- "lattice",
- "linear_gradient",
- "mipmap_srgb",
- "mixedtextblobs",
- "OverStroke",
- "simple-offsetimagefilter",
- "strokerect",
- "textblobmixedsizes",
- "textblobmixedsizes_df"}
-
func processTest(testName string, imgUrls []string, output string) error {
if strings.ContainsRune(testName, '/') {
return nil
@@ -190,9 +157,6 @@ func main() {
var wg sync.WaitGroup
for _, record := range records {
- if in(record.TestName, blacklist) {
- continue
- }
var goodUrls []string
for _, digest := range record.Digests {
if (in("vk", digest.ParamSet["config"]) ||