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

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

Issue 101043002: [Telemetry] Disable dom_perf on Android because it times out. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/dom_perf.py
diff --git a/tools/perf/benchmarks/dom_perf.py b/tools/perf/benchmarks/dom_perf.py
index 1a466947fca51b832519be37841a305ecf715ba2..8552570ff7bd644f2e1de3840bc7984f1150f396 100644
--- a/tools/perf/benchmarks/dom_perf.py
+++ b/tools/perf/benchmarks/dom_perf.py
@@ -5,6 +5,7 @@
import json
import math
import os
+import sys
from telemetry import test
from telemetry.core import util
@@ -74,6 +75,8 @@ class DomPerf(test.Test):
means better performance: Bigger is better!"""
test = _DomPerfMeasurement
+ enabled = not sys.platform.startwith('linux')
+
def CreatePageSet(self, options):
dom_perf_dir = os.path.join(util.GetChromiumSrcDir(), 'data', 'dom_perf')
base_page = 'file://run.html?reportInJS=1&run='
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698