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

Unified Diff: chrome/telemetry_unittests.isolate

Issue 1471673003: [Telemetry] Set the number of processes to use for telemetry_unittests on win platform to be 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing comma Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/telemetry_unittests.isolate
diff --git a/chrome/telemetry_unittests.isolate b/chrome/telemetry_unittests.isolate
index f91ea698a5736d297fb45b8c7955ee9fea85cf3c..fb8c4015ba4e7f9c9cf6cbfb38f5fbd2769a3b98 100644
--- a/chrome/telemetry_unittests.isolate
+++ b/chrome/telemetry_unittests.isolate
@@ -15,12 +15,31 @@
'../testing/scripts/common.py',
'../testing/scripts/run_telemetry_as_googletest.py',
],
+ }
+ }],
+ ['OS=="mac"', {
+ 'variables': {
+ 'command': [
+ '../testing/scripts/run_telemetry_as_googletest.py',
+ '../tools/telemetry/run_tests',
+ '-v',
+ '--chrome-root',
+ '..',
+ ],
+ },
+ }],
+ ['OS=="win"', {
+ 'variables': {
'command': [
'../testing/scripts/run_telemetry_as_googletest.py',
'../tools/telemetry/run_tests',
'-v',
'--chrome-root',
- '..'
+ '..',
+ # crbug.com/559154
+ # TODO(nednguyen): Remove --jobs=1 once the bug is fixed to speed up
+ # the test run.
+ '--job=1',
],
},
}],
« 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