OLD | NEW |
1 # | 1 # |
2 # Copyright 2015 Google Inc. | 2 # Copyright 2015 Google Inc. |
3 # | 3 # |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 # | 6 # |
7 | 7 |
8 #!/usr/bin/env python | 8 #!/usr/bin/env python |
9 | 9 |
10 usage = ''' | 10 usage = ''' |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 # Segfaults when run as GPU bench. Very large texture? | 62 # Segfaults when run as GPU bench. Very large texture? |
63 match.append('~blurroundrect') | 63 match.append('~blurroundrect') |
64 match.append('~patch_grid') # skia:2847 | 64 match.append('~patch_grid') # skia:2847 |
65 match.append('~desk_carsvg') | 65 match.append('~desk_carsvg') |
66 if 'HD2000' in bot: | 66 if 'HD2000' in bot: |
67 match.extend(['~gradient', '~etc1bitmap']) # skia:2895 | 67 match.extend(['~gradient', '~etc1bitmap']) # skia:2895 |
68 if 'NexusPlayer' in bot: | 68 if 'NexusPlayer' in bot: |
69 match.append('~desk_unicodetable') | 69 match.append('~desk_unicodetable') |
70 if 'GalaxyS4' in bot: | 70 if 'GalaxyS4' in bot: |
71 match.append('~GLInstancedArraysBench') # skia:4371 | 71 match.append('~GLInstancedArraysBench') # skia:4371 |
| 72 # skia:4373 |
| 73 match.extend(['~GLVertexAttributesBench', '~GLVec4ScalarBench']) |
72 | 74 |
73 if 'iOS' in bot: | 75 if 'iOS' in bot: |
74 match.append('~blurroundrect') | 76 match.append('~blurroundrect') |
75 match.append('~patch_grid') # skia:2847 | 77 match.append('~patch_grid') # skia:2847 |
76 match.append('~desk_carsvg') | 78 match.append('~desk_carsvg') |
77 match.append('~keymobi') | 79 match.append('~keymobi') |
78 match.append('~path_hairline') | 80 match.append('~path_hairline') |
79 | 81 |
80 if match: | 82 if match: |
81 args.append('--match') | 83 args.append('--match') |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 121 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
120 self_test() | 122 self_test() |
121 sys.exit(0) | 123 sys.exit(0) |
122 | 124 |
123 if len(sys.argv) != 3: | 125 if len(sys.argv) != 3: |
124 print usage | 126 print usage |
125 sys.exit(1) | 127 sys.exit(1) |
126 | 128 |
127 with open(sys.argv[1], 'w') as out: | 129 with open(sys.argv[1], 'w') as out: |
128 json.dump(get_args(sys.argv[2]), out) | 130 json.dump(get_args(sys.argv[2]), out) |
OLD | NEW |