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

Unified Diff: tools/perf/run_benchmark

Issue 2821663002: [tools/perf] Remove default values of benchmark_dirs and top_level_dir in chromium_config module (Closed)
Patch Set: Address martiniss@'s comment Created 3 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
« no previous file with comments | « tools/perf/core/perf_data_generator.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/run_benchmark
diff --git a/tools/perf/run_benchmark b/tools/perf/run_benchmark
index 228405ff6361cb67523cd39f80c2b665219edacb..00fb6af885a2268184929f8111e8d0df6ee1b690 100755
--- a/tools/perf/run_benchmark
+++ b/tools/perf/run_benchmark
@@ -15,8 +15,11 @@ from chrome_telemetry_build import chromium_config
def main():
- config = chromium_config.ChromiumConfig()
+ config = chromium_config.ChromiumConfig(
+ benchmark_dirs=[path_util.GetPerfBenchmarksDir()],
+ top_level_dir=path_util.GetPerfDir())
return benchmark_runner.main(config, [trybot_command.Trybot])
+
if __name__ == '__main__':
sys.exit(main())
« no previous file with comments | « tools/perf/core/perf_data_generator.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698