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

Side by Side Diff: tools/perf/fetch_benchmark_deps_unittest.py

Issue 2206403002: Fix octane test content URL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fix octane test URL and update WPR content Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « tools/perf/benchmarks/octane.py ('k') | tools/perf/page_sets/data/octane.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os 5 import os
6 import sys 6 import sys
7 import unittest 7 import unittest
8 import StringIO 8 import StringIO
9 9
10 import mock # pylint: disable=import-error 10 import mock # pylint: disable=import-error
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 NormPaths(output.getvalue())) 60 NormPaths(output.getvalue()))
61 61
62 def testFetchWPRs(self): 62 def testFetchWPRs(self):
63 self._RunFetchBenchmarkDepsTest('smoothness.top_25_smooth') 63 self._RunFetchBenchmarkDepsTest('smoothness.top_25_smooth')
64 64
65 def testFetchServingDirs(self): 65 def testFetchServingDirs(self):
66 self._RunFetchBenchmarkDepsTest('media.tough_video_cases') 66 self._RunFetchBenchmarkDepsTest('media.tough_video_cases')
67 67
68 def testFetchOctane(self): 68 def testFetchOctane(self):
69 octane_wpr_path = os.path.join( 69 octane_wpr_path = os.path.join(
70 os.path.dirname(__file__), 'page_sets', 'data', 'octane_001.wpr') 70 os.path.dirname(__file__), 'page_sets', 'data', 'octane_002.wpr')
71 expected = os.path.relpath(octane_wpr_path, 71 expected = os.path.relpath(octane_wpr_path,
72 path_util.GetChromiumSrcDir()) 72 path_util.GetChromiumSrcDir())
73 self._RunFetchBenchmarkDepsTest('octane', NormPaths(expected)) 73 self._RunFetchBenchmarkDepsTest('octane', NormPaths(expected))
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/octane.py ('k') | tools/perf/page_sets/data/octane.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698