| Index: third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py b/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
|
| index ba0f3b3bfc3ca49551d1d668dd635f1754be4caf..f35388d9f5b9872f2aa30fb0170310db1b426863 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
|
| @@ -262,10 +262,10 @@ class PerfTestsRunner(object):
|
|
|
| def _generate_results_dict(self, timestamp, description, platform, builder_name, build_number):
|
| revisions = {}
|
| - for (name, path) in self._port.repository_paths():
|
| - scm = SCMDetector(self._host.filesystem, self._host.executive).detect_scm_system(path) or self._host.scm()
|
| - revision = scm.svn_revision(path)
|
| - revisions[name] = {'revision': revision, 'timestamp': scm.timestamp_of_revision(path, revision)}
|
| + path = self._port.repository_path()
|
| + scm = SCMDetector(self._host.filesystem, self._host.executive).detect_scm_system(path) or self._host.scm()
|
| + revision = scm.commit_position(path)
|
| + revisions['chromium'] = {'revision': revision, 'timestamp': scm.timestamp_of_revision(path, revision)}
|
|
|
| meta_info = {
|
| 'description': description,
|
|
|