OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 # Recipe module for Skia Swarming test. | 6 # Recipe module for Skia Swarming test. |
7 | 7 |
8 | 8 |
9 DEPS = [ | 9 DEPS = [ |
10 'build/file', | 10 'build/file', |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 blacklist('_ image gen_platf rgb24lprof.bmp') | 179 blacklist('_ image gen_platf rgb24lprof.bmp') |
180 blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp') | 180 blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp') |
181 blacklist('_ image gen_platf 4bpp-pixeldata-cropped.bmp') | 181 blacklist('_ image gen_platf 4bpp-pixeldata-cropped.bmp') |
182 blacklist('_ image gen_platf 32bpp-pixeldata-cropped.bmp') | 182 blacklist('_ image gen_platf 32bpp-pixeldata-cropped.bmp') |
183 blacklist('_ image gen_platf 24bpp-pixeldata-cropped.bmp') | 183 blacklist('_ image gen_platf 24bpp-pixeldata-cropped.bmp') |
184 | 184 |
185 # CG has unpredictable behavior on this questionable gif | 185 # CG has unpredictable behavior on this questionable gif |
186 # It's probably using uninitialized memory | 186 # It's probably using uninitialized memory |
187 blacklist('_ image gen_platf frame_larger_than_image.gif') | 187 blacklist('_ image gen_platf frame_larger_than_image.gif') |
188 | 188 |
| 189 # CG has unpredictable behavior on incomplete pngs |
| 190 # skbug.com/5774 |
| 191 blacklist('_ image gen_platf inc0.png') |
| 192 blacklist('_ image gen_platf inc1.png') |
| 193 blacklist('_ image gen_platf inc2.png') |
| 194 blacklist('_ image gen_platf inc3.png') |
| 195 blacklist('_ image gen_platf inc4.png') |
| 196 blacklist('_ image gen_platf inc5.png') |
| 197 blacklist('_ image gen_platf inc6.png') |
| 198 blacklist('_ image gen_platf inc7.png') |
| 199 blacklist('_ image gen_platf inc8.png') |
| 200 blacklist('_ image gen_platf inc9.png') |
| 201 blacklist('_ image gen_platf inc10.png') |
| 202 blacklist('_ image gen_platf inc11.png') |
| 203 blacklist('_ image gen_platf inc12.png') |
| 204 blacklist('_ image gen_platf inc13.png') |
| 205 blacklist('_ image gen_platf inc14.png') |
| 206 |
189 # WIC fails on questionable bmps | 207 # WIC fails on questionable bmps |
190 if 'Win' in bot: | 208 if 'Win' in bot: |
191 blacklist('_ image gen_platf rle8-height-negative.bmp') | 209 blacklist('_ image gen_platf rle8-height-negative.bmp') |
192 blacklist('_ image gen_platf rle4-height-negative.bmp') | 210 blacklist('_ image gen_platf rle4-height-negative.bmp') |
193 blacklist('_ image gen_platf pal8os2v2.bmp') | 211 blacklist('_ image gen_platf pal8os2v2.bmp') |
194 blacklist('_ image gen_platf pal8os2v2-16.bmp') | 212 blacklist('_ image gen_platf pal8os2v2-16.bmp') |
195 blacklist('_ image gen_platf rgba32abf.bmp') | 213 blacklist('_ image gen_platf rgba32abf.bmp') |
196 blacklist('_ image gen_platf rgb24prof.bmp') | 214 blacklist('_ image gen_platf rgb24prof.bmp') |
197 blacklist('_ image gen_platf rgb24lprof.bmp') | 215 blacklist('_ image gen_platf rgb24lprof.bmp') |
198 blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp') | 216 blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp') |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
885 api.properties( | 903 api.properties( |
886 buildername=builder, | 904 buildername=builder, |
887 mastername='client.skia', | 905 mastername='client.skia', |
888 slavename='skiabot-linux-swarm-000', | 906 slavename='skiabot-linux-swarm-000', |
889 buildnumber=5, | 907 buildnumber=5, |
890 path_config='kitchen', | 908 path_config='kitchen', |
891 swarm_out_dir='[SWARM_OUT_DIR]', | 909 swarm_out_dir='[SWARM_OUT_DIR]', |
892 revision='abc123', | 910 revision='abc123', |
893 **gerrit_kwargs) | 911 **gerrit_kwargs) |
894 ) | 912 ) |
OLD | NEW |