Commit 4de8f64b authored by tonyg@chromium.org's avatar tonyg@chromium.org

[Telemetry] Disable spaceport and tough_canvas_cases on mac.

They are timing out.

TBR=tonyg@chromium.org
NOTRY=True
BUG=

Review URL: https://codereview.chromium.org/100653004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238299 0039d316-1c4b-4281-b951-d872f2087c98
parent e11548d9
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
from telemetry import test
from measurements import smoothness
......@@ -16,6 +19,7 @@ class SmoothnessTop25(test.Test):
class SmoothnessToughCanvasCases(test.Test):
test = smoothness.Smoothness
enabled = sys.platform != 'darwin'
page_set = 'page_sets/tough_canvas_cases.json'
......
......@@ -6,6 +6,7 @@
import logging
import os
import sys
from telemetry import test
from telemetry.core import util
......@@ -56,6 +57,8 @@ class Spaceport(test.Test):
"""spaceport.io's PerfMarks benchmark."""
test = _SpaceportMeasurement
enabled = sys.platform != 'darwin'
def CreatePageSet(self, options):
spaceport_dir = os.path.join(util.GetChromiumSrcDir(), 'chrome', 'test',
'data', 'third_party', 'spaceport')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment