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

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

Issue 2621163007: Use --disable-es3-apis when running WebGL tests on the passthrough cmd decoder. (Closed)
Patch Set: Rebase. Created 3 years, 11 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 | content/test/gpu/gpu_tests/webgl_conformance_expectations.py » ('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 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 { 1330 {
1331 'fyi_only': True, 1331 'fyi_only': True,
1332 'os_types': ['win'], 1332 'os_types': ['win'],
1333 'run_on_optional': True, 1333 'run_on_optional': True,
1334 } 1334 }
1335 ], 1335 ],
1336 'target_name': 'webgl_conformance', 1336 'target_name': 'webgl_conformance',
1337 'extra_browser_args': [ 1337 'extra_browser_args': [
1338 '--use-angle=d3d11', 1338 '--use-angle=d3d11',
1339 '--use-passthrough-cmd-decoder', 1339 '--use-passthrough-cmd-decoder',
1340 # TODO(geofflang): Remove --disable-es3-apis once crbug.com/671217 is
1341 # complete.
1342 '--disable-es3-apis',
1343 # TODO(geofflang): --disable-es3-gl-context is required because of
1344 # crbug.com/680522
1345 '--disable-es3-gl-context',
1340 ], 1346 ],
1341 'asan_args': ['--is-asan'], 1347 'asan_args': ['--is-asan'],
1342 }, 1348 },
1343 'webgl2_conformance_tests': { 1349 'webgl2_conformance_tests': {
1344 'tester_configs': [ 1350 'tester_configs': [
1345 { 1351 {
1346 # The WebGL 2.0 conformance tests take over an hour to run on 1352 # The WebGL 2.0 conformance tests take over an hour to run on
1347 # the Debug bots, which is too long. 1353 # the Debug bots, which is too long.
1348 'build_configs': ['Release', 'Release_x64'], 1354 'build_configs': ['Release', 'Release_x64'],
1349 'fyi_only': True, 1355 'fyi_only': True,
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) 1740 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True)
1735 fp.write('\n') 1741 fp.write('\n')
1736 1742
1737 def main(): 1743 def main():
1738 generate_all_tests(FYI_WATERFALL, True) 1744 generate_all_tests(FYI_WATERFALL, True)
1739 generate_all_tests(WATERFALL, False) 1745 generate_all_tests(WATERFALL, False)
1740 return 0 1746 return 0
1741 1747
1742 if __name__ == "__main__": 1748 if __name__ == "__main__":
1743 sys.exit(main()) 1749 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/webgl_conformance_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698