summaryrefslogtreecommitdiff
path: root/ezbench
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2016-07-29 18:08:29 +0300
committerMartin Peres <martin.peres@linux.intel.com>2016-07-29 18:08:29 +0300
commit74e796f3a377f26064a4d5a3538cab44f143f13e (patch)
treea659af94e3cc57aa9fcfafaec06298395f83e092 /ezbench
parentd7284f8df39ae41bcf56d73db3f02922da02e140 (diff)
ezbench.py: rename Ezbench.run_commits() into Ezbench.run()
Diffstat (limited to 'ezbench')
-rwxr-xr-xezbench4
1 files changed, 2 insertions, 2 deletions
diff --git a/ezbench b/ezbench
index 2838a6e..63ed0c7 100755
--- a/ezbench
+++ b/ezbench
@@ -132,7 +132,7 @@ if args.commits is not None and args.tests is not None:
ezbench = Ezbench(ezbench_dir=ezbench_dir,
profile=sbench.profile(),
report_name="tmp")
- run_info = ezbench.run_commits(commits, tests, tests_exclude, dry_run=True)
+ run_info = ezbench.run(commits, tests, tests_exclude, dry_run=True)
if not run_info.success():
sys.exit(1)
@@ -155,7 +155,7 @@ if args.commits is not None and len(testsets_to_be_added) > 0:
ezbench = Ezbench(ezbench_dir=ezbench_dir,
profile=sbench.profile(),
report_name="tmp")
- run_info = ezbench.run_commits(commits, [], dry_run=True)
+ run_info = ezbench.run(commits, [], dry_run=True)
if not run_info.success():
sys.exit(1)