Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: content/test/gpu/generate_buildbot_json.py

Issue 2689873002: Run angle_white_box_tests on Win GPU.FYI (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in 6 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in
7 the src/testing/buildbot directory. Maintaining these files by hand is 7 the src/testing/buildbot directory. Maintaining these files by hand is
8 too unwieldy. 8 too unwieldy.
9 """ 9 """
10 10
(...skipping 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 ], 1155 ],
1156 }, 1156 },
1157 ], 1157 ],
1158 'desktop_args': [ 1158 'desktop_args': [
1159 '--use-gpu-in-tests', 1159 '--use-gpu-in-tests',
1160 # ANGLE test retries deliberately disabled to prevent flakiness. 1160 # ANGLE test retries deliberately disabled to prevent flakiness.
1161 # http://crbug.com/669196 1161 # http://crbug.com/669196
1162 '--test-launcher-retry-limit=0' 1162 '--test-launcher-retry-limit=0'
1163 ] 1163 ]
1164 }, 1164 },
1165 # white_box tests should run where end2end tests run
1166 'angle_white_box_tests': {
1167 'tester_configs': [
1168 {
1169 'predicate': Predicates.FYI_AND_OPTIONAL,
1170 # There are only Windows white box tests
Jamie Madill 2017/02/12 00:02:01 should probably comment that we should run these o
ynovikov 2017/02/16 00:33:41 Done.
1171 'os_types': ['win'],
1172 },
1173 ],
1174 'desktop_args': [
1175 '--use-gpu-in-tests',
Jamie Madill 2017/02/12 00:02:01 pretty sure this argument does nothing and can be
ynovikov 2017/02/16 00:33:41 Done. (I've search for its usage, and it looks lik
1176 # ANGLE test retries deliberately disabled to prevent flakiness.
1177 # http://crbug.com/669196
1178 '--test-launcher-retry-limit=0'
1179 ]
1180 },
1165 'angle_unittests': { 1181 'angle_unittests': {
1166 'desktop_args': [ 1182 'desktop_args': [
1167 '--use-gpu-in-tests', 1183 '--use-gpu-in-tests',
1168 # ANGLE test retries deliberately disabled to prevent flakiness. 1184 # ANGLE test retries deliberately disabled to prevent flakiness.
1169 # http://crbug.com/669196 1185 # http://crbug.com/669196
1170 '--test-launcher-retry-limit=0' 1186 '--test-launcher-retry-limit=0'
1171 ] 1187 ]
1172 }, 1188 },
1173 # Until the media-only tests are extracted from content_unittests, 1189 # Until the media-only tests are extracted from content_unittests,
1174 # and audio_unittests and content_unittests can be run on the commit 1190 # and audio_unittests and content_unittests can be run on the commit
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 install_parent_links(WATERFALL) 1933 install_parent_links(WATERFALL)
1918 install_parent_links(V8_FYI_WATERFALL) 1934 install_parent_links(V8_FYI_WATERFALL)
1919 1935
1920 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') 1936 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json')
1921 generate_all_tests(WATERFALL, 'chromium.gpu.json') 1937 generate_all_tests(WATERFALL, 'chromium.gpu.json')
1922 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') 1938 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json')
1923 return 0 1939 return 0
1924 1940
1925 if __name__ == "__main__": 1941 if __name__ == "__main__":
1926 sys.exit(main()) 1942 sys.exit(main())
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698