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

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py

Issue 1379493002: Use chromium revision instead of blink svn revision when rebaselining layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove multiple repo support Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2010, Google Inc. All rights reserved. 1 # Copyright (c) 2010, Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 def __init__(self, parsed_json): 100 def __init__(self, parsed_json):
101 self._results = parsed_json 101 self._results = parsed_json
102 102
103 def run_was_interrupted(self): 103 def run_was_interrupted(self):
104 return self._results["interrupted"] 104 return self._results["interrupted"]
105 105
106 def builder_name(self): 106 def builder_name(self):
107 return self._results["builder_name"] 107 return self._results["builder_name"]
108 108
109 def blink_revision(self): 109 def chromium_revision(self):
110 return int(self._results["blink_revision"]) 110 return int(self._results["chromium_revision"])
111 111
112 def actual_results(self, test): 112 def actual_results(self, test):
113 result = result_for_test(self._results["tests"], test) 113 result = result_for_test(self._results["tests"], test)
114 if result: 114 if result:
115 return result["actual"] 115 return result["actual"]
116 return "" 116 return ""
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698