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

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

Issue 2694193005: Disable service_unittests on Mac Pros. (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 | « no previous file | 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 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 'os_types': ['win'], 1251 'os_types': ['win'],
1252 } 1252 }
1253 ], 1253 ],
1254 'args': [ 1254 'args': [
1255 '--use-gpu-in-tests', 1255 '--use-gpu-in-tests',
1256 '--use-angle=gl', 1256 '--use-angle=gl',
1257 '--disable-gpu-sandbox', 1257 '--disable-gpu-sandbox',
1258 ], 1258 ],
1259 'test': 'gles2_conform_test', 1259 'test': 'gles2_conform_test',
1260 }, 1260 },
1261 # Face and barcode detection unit tests, which currently only run on
1262 # Mac OS, and require physical hardware.
1261 'service_unittests': { 1263 'service_unittests': {
1262 'tester_configs': [ 1264 'tester_configs': [
1263 { 1265 {
1264 # Run this on the FYI waterfall and optional tryservers. 1266 # Run this on the FYI waterfall and optional tryservers.
1265 'predicate': Predicates.FYI_AND_OPTIONAL, 1267 'predicate': Predicates.FYI_AND_OPTIONAL,
1266 'os_types': ['mac'], 1268 'os_types': ['mac'],
1267 }, 1269 },
1268 ], 1270 ],
1271 'disabled_tester_configs': [
1272 {
1273 'swarming_dimension_sets': [
1274 # These tests fail on the Mac Pros.
1275 {
1276 'gpu': '1002:679e',
1277 },
1278 ],
1279 },
1280 ],
1269 'args': [ 1281 'args': [
1270 '--gtest_filter=*Detection*', 1282 '--gtest_filter=*Detection*',
1271 '--use-gpu-in-tests' 1283 '--use-gpu-in-tests'
1272 ] 1284 ]
1273 }, 1285 },
1274 'swiftshader_unittests': { 1286 'swiftshader_unittests': {
1275 'tester_configs': [ 1287 'tester_configs': [
1276 { 1288 {
1277 # Run this on the FYI waterfall and optional tryservers. 1289 # Run this on the FYI waterfall and optional tryservers.
1278 'predicate': Predicates.FYI_AND_OPTIONAL, 1290 'predicate': Predicates.FYI_AND_OPTIONAL,
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
1930 install_parent_links(WATERFALL) 1942 install_parent_links(WATERFALL)
1931 install_parent_links(V8_FYI_WATERFALL) 1943 install_parent_links(V8_FYI_WATERFALL)
1932 1944
1933 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') 1945 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json')
1934 generate_all_tests(WATERFALL, 'chromium.gpu.json') 1946 generate_all_tests(WATERFALL, 'chromium.gpu.json')
1935 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') 1947 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json')
1936 return 0 1948 return 0
1937 1949
1938 if __name__ == "__main__": 1950 if __name__ == "__main__":
1939 sys.exit(main()) 1951 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698