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

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

Issue 2487093003: Temporarily mark Maps.maps_004 flaky on Mac and Win. (Closed)
Patch Set: Created 4 years, 1 month 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/maps_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 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 '--build-revision', 1044 '--build-revision',
1045 '${got_revision}', 1045 '${got_revision}',
1046 '--test-machine-name', 1046 '--test-machine-name',
1047 '${buildername}', 1047 '${buildername}',
1048 ], 1048 ],
1049 'tester_configs': [ 1049 'tester_configs': [
1050 { 1050 {
1051 'allow_on_android': True, 1051 'allow_on_android': True,
1052 }, 1052 },
1053 ], 1053 ],
1054 'disabled_tester_configs': [
1055 {
1056 'names': [
1057 # TODO(crbug.com/626986) Flaky on Mac and Win.
1058 'Mac 10.10 Debug (Intel)',
1059 'Win7 Release (NVIDIA)',
1060 ],
1061 },
1062 ],
1063 }, 1054 },
1064 'screenshot_sync': { 1055 'screenshot_sync': {
1065 'tester_configs': [ 1056 'tester_configs': [
1066 { 1057 {
1067 'allow_on_android': True, 1058 'allow_on_android': True,
1068 }, 1059 },
1069 ], 1060 ],
1070 }, 1061 },
1071 'trace_test': { 1062 'trace_test': {
1072 'tester_configs': [ 1063 'tester_configs': [
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1514 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) 1505 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True)
1515 fp.write('\n') 1506 fp.write('\n')
1516 1507
1517 def main(): 1508 def main():
1518 generate_all_tests(FYI_WATERFALL, True) 1509 generate_all_tests(FYI_WATERFALL, True)
1519 generate_all_tests(WATERFALL, False) 1510 generate_all_tests(WATERFALL, False)
1520 return 0 1511 return 0
1521 1512
1522 if __name__ == "__main__": 1513 if __name__ == "__main__":
1523 sys.exit(main()) 1514 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/maps_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698