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

Unified Diff: recipe_modules/platform/example.py

Issue 2641253005: Add multiprocessing.cpu_count access to platform module. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « recipe_modules/platform/api.py ('k') | recipe_modules/platform/example.expected/four_cores.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/platform/example.py
diff --git a/recipe_modules/platform/example.py b/recipe_modules/platform/example.py
index ca7924c2beaba6bdf121675502b613bde23dac56..b03124e4ea9fb8523a5e8361898062f7aa3753c3 100644
--- a/recipe_modules/platform/example.py
+++ b/recipe_modules/platform/example.py
@@ -12,9 +12,11 @@ def RunSteps(api):
step_result.presentation.logs['name'] = [api.platform.name]
step_result.presentation.logs['bits'] = [str(api.platform.bits)]
step_result.presentation.logs['arch'] = [api.platform.arch]
+ step_result.presentation.logs['cpu_count'] = [str(api.platform.cpu_count)]
def GenTests(api):
yield api.test('linux64') + api.platform('linux', 64)
yield api.test('mac64') + api.platform('mac', 64)
yield api.test('win32') + api.platform('win', 32)
+ yield api.test('four_cores') + api.platform.cpu_count(4)
« no previous file with comments | « recipe_modules/platform/api.py ('k') | recipe_modules/platform/example.expected/four_cores.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698