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

Unified Diff: scripts/slave/recipes/libvpx/android_unittests.py

Issue 1782723002: Use buildername rather than slavename for "bot" with perf dashboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Allow recipe to specify bot name in skeleton point. Created 4 years, 9 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 | « scripts/slave/recipe_modules/perf_dashboard/example.expected/win_use_mirror.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/libvpx/android_unittests.py
diff --git a/scripts/slave/recipes/libvpx/android_unittests.py b/scripts/slave/recipes/libvpx/android_unittests.py
index 86daabfef30f052312b59eef55fada2e57c90c9a..f6ac89e08dc29a7b53d59b5a32147b8504edf3c0 100644
--- a/scripts/slave/recipes/libvpx/android_unittests.py
+++ b/scripts/slave/recipes/libvpx/android_unittests.py
@@ -149,23 +149,32 @@ def RunSteps(api, libvpx_git_url, buildername):
# Two data points for encoder tests, FPS and minPsnr
testname = "libvpx/encode/perf_test/fps/" + device + "/"
testname = testname + i["videoName"] + "_" + str(i["speed"])
- p = api.perf_dashboard.get_skeleton_point(testname,
- libvpx_revision_number, i["framesPerSecond"])
+ p = api.perf_dashboard.get_skeleton_point(
+ testname,
+ libvpx_revision_number,
+ i["framesPerSecond"],
+ bot=api.m.properties["slavename"])
p['units'] = "fps"
points.append(p)
#minPsnr
testname = "libvpx/encode/perf_test/minPsnr/" + device + "/"
testname = testname + i["videoName"] + "_" + str(i["speed"])
- p = api.perf_dashboard.get_skeleton_point(testname,
- libvpx_revision_number, i["minPsnr"])
+ p = api.perf_dashboard.get_skeleton_point(
+ testname,
+ libvpx_revision_number,
+ i["minPsnr"],
+ bot=api.m.properties["slavename"])
p['units'] = "dB"
points.append(p)
else:
testname = "libvpx/decode/perf_test/" + device + "/"
testname = testname + i["videoName"] + "_" + str(i["threadCount"])
- p = api.perf_dashboard.get_skeleton_point(testname,
- libvpx_revision_number, i["framesPerSecond"])
+ p = api.perf_dashboard.get_skeleton_point(
+ testname,
+ libvpx_revision_number,
+ i["framesPerSecond"],
+ bot=api.m.properties["slavename"])
p['units'] = "fps"
points.append(p)
« no previous file with comments | « scripts/slave/recipe_modules/perf_dashboard/example.expected/win_use_mirror.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698