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

Side by Side Diff: tools/telemetry/telemetry/desktop_browser_finder_unittest.py

Issue 12294002: Revert 182991 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 import unittest 4 import unittest
5 5
6 from telemetry import browser_options 6 from telemetry import browser_options
7 from telemetry import desktop_browser_finder 7 from telemetry import desktop_browser_finder
8 from telemetry import system_stub 8 from telemetry import system_stub
9 9
10 # This file verifies the logic for finding a browser instance on all platforms 10 # This file verifies the logic for finding a browser instance on all platforms
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 179
180 def testFindAllWithExact(self): 180 def testFindAllWithExact(self):
181 self._options.browser_executable = 'c:\\tmp\\chrome.exe' 181 self._options.browser_executable = 'c:\\tmp\\chrome.exe'
182 types = self.DoFindAllTypes() 182 types = self.DoFindAllTypes()
183 self.assertEquals( 183 self.assertEquals(
184 set(types), 184 set(types),
185 set(['exact', 185 set(['exact',
186 'debug', 'release', 186 'debug', 'release',
187 'content-shell-debug', 'content-shell-release', 187 'content-shell-debug', 'content-shell-release',
188 'system', 'canary'])) 188 'system', 'canary']))
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/desktop_browser_finder.py ('k') | tools/telemetry/telemetry/discover.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698