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

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

Issue 2631783004: Remove min fps requirements for VDA unittest on windows bots. (Closed)
Patch Set: rebase 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 | « no previous file | testing/buildbot/chromium.gpu.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 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1297 ], 1297 ],
1298 }, 1298 },
1299 'video_decode_accelerator_unittest': { 1299 'video_decode_accelerator_unittest': {
1300 'tester_configs': [ 1300 'tester_configs': [
1301 { 1301 {
1302 'os_types': ['win'] 1302 'os_types': ['win']
1303 }, 1303 },
1304 ], 1304 ],
1305 'args': [ 1305 'args': [
1306 '--use-test-data-path', 1306 '--use-test-data-path',
1307 '--test_video_data=test-25fps.h264:320:240:250:258:::1',
1307 ], 1308 ],
1308 }, 1309 },
1309 } 1310 }
1310 1311
1311 # This requires a hack because the isolate's name is different than 1312 # This requires a hack because the isolate's name is different than
1312 # the executable's name. On the few non-swarmed testers, this causes 1313 # the executable's name. On the few non-swarmed testers, this causes
1313 # the executable to not be found. It would be better if the Chromium 1314 # the executable to not be found. It would be better if the Chromium
1314 # recipe supported running isolates locally. crbug.com/581953 1315 # recipe supported running isolates locally. crbug.com/581953
1315 1316
1316 NON_SWARMED_GTESTS = { 1317 NON_SWARMED_GTESTS = {
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
1930 install_parent_links(WATERFALL) 1931 install_parent_links(WATERFALL)
1931 install_parent_links(V8_FYI_WATERFALL) 1932 install_parent_links(V8_FYI_WATERFALL)
1932 1933
1933 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') 1934 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json')
1934 generate_all_tests(WATERFALL, 'chromium.gpu.json') 1935 generate_all_tests(WATERFALL, 'chromium.gpu.json')
1935 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') 1936 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json')
1936 return 0 1937 return 0
1937 1938
1938 if __name__ == "__main__": 1939 if __name__ == "__main__":
1939 sys.exit(main()) 1940 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698