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

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

Issue 954503003: Fixed merge error in benchmark.py which removed the predicate variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed optparse module name Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/telemetry/telemetry/benchmark_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/benchmark.py
diff --git a/tools/telemetry/telemetry/benchmark.py b/tools/telemetry/telemetry/benchmark.py
index 6a34ec204c51cc0ec0fc132a6167b96749b65e7f..f86393c4d2aa5ef8687fac121b2d694ecc2dc2a7 100644
--- a/tools/telemetry/telemetry/benchmark.py
+++ b/tools/telemetry/telemetry/benchmark.py
@@ -189,8 +189,9 @@ class Benchmark(command_line.Command):
self._DownloadGeneratedProfileArchive(finder_options)
benchmark_metadata = self.GetMetadata()
- with results_options.CreateResults(benchmark_metadata,
- finder_options) as results:
+ with results_options.CreateResults(
+ benchmark_metadata, finder_options,
+ self.ValueCanBeAddedPredicate) as results:
try:
user_story_runner.Run(pt, us, expectations, finder_options, results,
max_failures=self._max_failures)
« no previous file with comments | « no previous file | tools/telemetry/telemetry/benchmark_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698