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

Unified Diff: tools/perf/benchmarks/v8_browsing.py

Issue 2623113003: [Benchmark] Add memory tests for Ignition+TurboFan (Closed)
Patch Set: Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/benchmarks/v8.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/v8_browsing.py
diff --git a/tools/perf/benchmarks/v8_browsing.py b/tools/perf/benchmarks/v8_browsing.py
index 4e4c15f4b6ffec74bf25d5a8c093e87fc36cc231..6f2f08b5f624488581d2508760fee0b13dc6659f 100644
--- a/tools/perf/benchmarks/v8_browsing.py
+++ b/tools/perf/benchmarks/v8_browsing.py
@@ -126,6 +126,16 @@ class V8DesktopIgnitionBrowsingBenchmark(_V8DesktopBrowsingBenchmark):
v8_helper.EnableIgnition(options)
+class V8DesktopTurboBrowsingBenchmark(_V8DesktopBrowsingBenchmark):
+ PLATFORM = 'desktop'
+ TEST_SUFFIX = '_turbo'
+
+ def SetExtraBrowserOptions(self, options):
+ super(V8DesktopTurboBrowsingBenchmark, self).SetExtraBrowserOptions(
+ options)
+ v8_helper.EnableTurbo(options)
+
+
@benchmark.Disabled('reference') # http://crbug.com/628631
class V8MobileIgnitionBrowsingBenchmark(_V8MobileBrowsingBenchmark):
PLATFORM = 'mobile'
@@ -135,3 +145,14 @@ class V8MobileIgnitionBrowsingBenchmark(_V8MobileBrowsingBenchmark):
super(V8MobileIgnitionBrowsingBenchmark, self).SetExtraBrowserOptions(
options)
v8_helper.EnableIgnition(options)
+
+
+@benchmark.Disabled('reference') # http://crbug.com/628631
+class V8MobileTurboBrowsingBenchmark(_V8MobileBrowsingBenchmark):
+ PLATFORM = 'mobile'
+ TEST_SUFFIX = '_turbo'
+
+ def SetExtraBrowserOptions(self, options):
+ super(V8MobileTurboBrowsingBenchmark, self).SetExtraBrowserOptions(
+ options)
+ v8_helper.EnableTurbo(options)
« no previous file with comments | « tools/perf/benchmarks/v8.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698