Fixes a bug that didn't address new perfdata location.
authorbensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 8 Feb 2013 18:47:02 +0000 (18:47 +0000)
committerbensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 8 Feb 2013 18:47:02 +0000 (18:47 +0000)
Review URL: https://codereview.appspot.com/7299070

git-svn-id: http://skia.googlecode.com/svn/trunk@7673 2bbb7eff-a529-9590-31e7-b0007b416f81

bench/gen_skp_ranges.py

index 8ba2feffe376c388463a7247b64e25c9ecaff829..f138ee9ef2bfbd43be7bf7b496c302da6fc36960 100755 (executable)
@@ -98,7 +98,11 @@ def OutputSkpBenchExpectations(rev_min, rev_max, representation_alg):
         obj.name.find('_data_skp_') < 0):
       continue
     # Ignores uninterested platforms.
-    platform = obj.name.split('/')[1][5:]  # Removes "Skia_" prefix.
+    platform = obj.name.split('/')[1][5:]  # Removes "Skia_" prefix
+    if not platform.startswith('Skia_'):
+      platform = obj.name.split('/')[2][5:]  # Removes "Skia_" prefix.
+        if not platform.startswith('Skia_'):
+          continue  # Not an object with platform info.
     if platform not in PLATFORMS:
       continue
     # Filters by revision.