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

Unified Diff: tools/telemetry/telemetry/test_runner.py

Issue 560153004: Telemetry: Fix exact_matches in telemetry.test_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move memory.py to memory_test.py to make the autogenerated name match the buildbot config Created 6 years, 3 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
« no previous file with comments | « content/test/gpu/gpu_tests/pixel.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/test_runner.py
diff --git a/tools/telemetry/telemetry/test_runner.py b/tools/telemetry/telemetry/test_runner.py
index 7fbbd8f90c1ac0bb4651e495228cb1bb10d7adfd..d549a384ba26c204f0a24c64604ae341b716b69d 100644
--- a/tools/telemetry/telemetry/test_runner.py
+++ b/tools/telemetry/telemetry/test_runner.py
@@ -246,6 +246,7 @@ def _MatchTestName(input_test_name, exact_matches=True):
for test_class in _Tests():
if exact_match == test_class.Name():
return [test_class]
+ return []
# Fuzzy matching.
return [test_class for test_class in _Tests()
« no previous file with comments | « content/test/gpu/gpu_tests/pixel.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698