summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2016-01-27 14:02:58 +0200
committerMartin Peres <martin.peres@linux.intel.com>2016-01-27 19:35:18 +0200
commit4c9bcd1727a5f64bfb91dd9a76816b7972f77779 (patch)
treede25317f073c647d0c116340673e2cf3b4258e47
parent78defa3cb118345b7167c9353cfe6d3e45cf66b1 (diff)
smart_ezbench: warn when we are calling enhance_report and when we are done
-rw-r--r--utils/ezbench.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/ezbench.py b/utils/ezbench.py
index fe8713e..64d36dc 100644
--- a/utils/ezbench.py
+++ b/utils/ezbench.py
@@ -634,6 +634,8 @@ class SmartEzbench:
return None
def schedule_enhancements(self, git_history=None, perf_change_threshold=0.05):
+ self.__log(Criticality.DD, "Start enhancing the report".format(commit))
+
# Generate the report, order commits based on the git history
if git_history is None:
git_history = self.git_history()
@@ -728,6 +730,8 @@ class SmartEzbench:
del tasks_sorted[-1]
self.__log(Criticality.DD, "No work scheduled using commit {}, try another one".format(commit))
+ self.__log(Criticality.DD, "Done enhancing the report".format(commit))
+
# Report parsing
class Benchmark:
def __init__(self, full_name, unit="undefined"):