| Index: tools/perf/benchmarks/session_restore.py
|
| diff --git a/tools/perf/benchmarks/session_restore.py b/tools/perf/benchmarks/session_restore.py
|
| index 016d4826942f0051d7bf603c3d3e4c079d02b325..d82dd04ace54b117cd6ed9f194d9e2835264954a 100644
|
| --- a/tools/perf/benchmarks/session_restore.py
|
| +++ b/tools/perf/benchmarks/session_restore.py
|
| @@ -1,12 +1,16 @@
|
| # Copyright 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 session_restore
|
|
|
|
|
| class SessionRestoreColdTypical25(test.Test):
|
| + # crbug.com/325479: Disabling this test for now since it never ran before.
|
| + enabled = not sys.platform.startswith('linux')
|
| tag = 'cold'
|
| test = session_restore.SessionRestore
|
| page_set = 'page_sets/typical_25.json'
|
|
|