| 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)
|
|
|
|
|