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

Side by Side Diff: testing/buildbot/gn_isolate_map.pyl

Issue 2700693003: buildbot: Fixing the arguments for webkit_tests_exparchive (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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## Copyright 2015 The Chromium Authors. All rights reserved. 1 ## Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This is a .pyl, or "Python Literal", file. You can treat it just like a 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a
6 # .json file, with the following exceptions: 6 # .json file, with the following exceptions:
7 # * all keys must be quoted (use single quotes, please); 7 # * all keys must be quoted (use single quotes, please);
8 # * comments are allowed, using '#' syntax; and 8 # * comments are allowed, using '#' syntax; and
9 # * trailing commas are allowed. 9 # * trailing commas are allowed.
10 10
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", 1017 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1018 ], 1018 ],
1019 }, 1019 },
1020 "webkit_layout_tests_exparchive": { 1020 "webkit_layout_tests_exparchive": {
1021 "label": "//:webkit_layout_tests_exparchive", 1021 "label": "//:webkit_layout_tests_exparchive",
1022 "type": "script", 1022 "type": "script",
1023 "script": "//testing/scripts/run_isolated_script_test.py", 1023 "script": "//testing/scripts/run_isolated_script_test.py",
1024 "args": [ 1024 "args": [
1025 "--xvfb", 1025 "--xvfb",
1026 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", 1026 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1027 "--seed", "4",
1028 "--no-show-results",
1029 "--full-results-html",
1027 "--clobber-old-results", 1030 "--clobber-old-results",
1028 "--no-show-results", 1031 "--exit-after-n-failures", "5000",
1032 "--exit-after-n-crashes-or-timeouts", "100",
1033 "--debug-rwt-logging",
1029 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", 1034 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1030 ], 1035 ],
1031 }, 1036 },
1032 "webkit_unit_tests": { 1037 "webkit_unit_tests": {
1033 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", 1038 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
1034 "type": "console_test_launcher", 1039 "type": "console_test_launcher",
1035 }, 1040 },
1036 "wm_unittests": { 1041 "wm_unittests": {
1037 "label": "//ui/wm:wm_unittests", 1042 "label": "//ui/wm:wm_unittests",
1038 "type": "windowed_test_launcher", 1043 "type": "windowed_test_launcher",
1039 }, 1044 },
1040 "wtf_unittests": { 1045 "wtf_unittests": {
1041 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 1046 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
1042 "type": "console_test_launcher", 1047 "type": "console_test_launcher",
1043 }, 1048 },
1044 } 1049 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698