Title: [129589] trunk/Tools
- Revision
- 129589
- Author
- [email protected]
- Date
- 2012-09-25 20:18:52 -0700 (Tue, 25 Sep 2012)
Log Message
Build fix. "values" doesn't necessarily contain multiple values but it needs to be always parsed as an array.
* Scripts/webkitpy/performance_tests/perftest.py:
(PerfTest.parse_output):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (129588 => 129589)
--- trunk/Tools/ChangeLog 2012-09-26 02:56:19 UTC (rev 129588)
+++ trunk/Tools/ChangeLog 2012-09-26 03:18:52 UTC (rev 129589)
@@ -1,5 +1,12 @@
2012-09-25 Ryosuke Niwa <[email protected]>
+ Build fix. "values" doesn't necessarily contain multiple values but it needs to be always parsed as an array.
+
+ * Scripts/webkitpy/performance_tests/perftest.py:
+ (PerfTest.parse_output):
+
+2012-09-25 Ryosuke Niwa <[email protected]>
+
run-perf-tests: cleanup options and results generation code
https://bugs.webkit.org/show_bug.cgi?id=97611
Modified: trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py (129588 => 129589)
--- trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py 2012-09-26 02:56:19 UTC (rev 129588)
+++ trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py 2012-09-26 03:18:52 UTC (rev 129589)
@@ -138,7 +138,7 @@
score = self._score_regex.match(line)
if score:
key = score.group('key')
- if ', ' in score.group('value'):
+ if key == 'values':
value = [float(number) for number in score.group('value').split(', ')]
else:
value = float(score.group('value'))
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes