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

Unified Diff: telemetry/telemetry/internal/util/path_unittest.py

Issue 1860643002: Fix stack trace symbolization on Windows. (Closed) Base URL: https://github.com/kenrussell/catapult.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: telemetry/telemetry/internal/util/path_unittest.py
diff --git a/telemetry/telemetry/internal/util/path_unittest.py b/telemetry/telemetry/internal/util/path_unittest.py
index 17f87e4709ea804729c7a4be9a011061ebf69c5d..e9a0ee026328496a5888ced36bfa2356cc9e0ed1 100644
--- a/telemetry/telemetry/internal/util/path_unittest.py
+++ b/telemetry/telemetry/internal/util/path_unittest.py
@@ -19,3 +19,8 @@ class PathTest(unittest.TestCase):
def testFindInstalledWindowsApplication(self):
self.assertTrue(path.FindInstalledWindowsApplication(os.path.join(
'Internet Explorer', 'iexplore.exe')))
+
+ @decorators.Enabled('win')
+ def testFindInstalledWindowsApplicationWithWildcards(self):
+ self.assertTrue(path.FindInstalledWindowsApplication(os.path.join(
+ '*', 'iexplore.exe')))

Powered by Google App Engine
This is Rietveld 408576698