Index: mojo/tools/mopy/perf_data_uploader.py |
diff --git a/mojo/tools/mopy/perf_data_uploader.py b/mojo/tools/mopy/perf_data_uploader.py |
index 3f00defd731743fc0a00d67e0587b2f854263a93..84e5280ab7bf1c8b96c87aaef8241b420cb62b11 100755 |
--- a/mojo/tools/mopy/perf_data_uploader.py |
+++ b/mojo/tools/mopy/perf_data_uploader.py |
@@ -129,7 +129,16 @@ def UploadPerfData(master_name, perf_id, test_name, builder_name, build_number, |
except _UploadException as e: |
print e |
return False |
- print "Done successfully." |
+ |
+ print "Done." |
+ |
+ dashboard_params = urllib.urlencode({ |
+ "masters": master_name, |
+ "bots": perf_id, |
+ "tests": test_name, |
+ "rev": point_id |
+ }) |
+ print "Results Dashboard: %s/report?%s" % (server_url, dashboard_params) |
return True |