summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/buildstats.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/lib/buildstats.py b/scripts/lib/buildstats.py
index 6db60d5bcf2..9f8c9061505 100644
--- a/scripts/lib/buildstats.py
+++ b/scripts/lib/buildstats.py
@@ -46,6 +46,11 @@ class BSTask(dict):
return rusage
@property
+ def start(self):
+ """Start time"""
+ return self['start_time']
+
+ @property
def walltime(self):
"""Elapsed wall clock time"""
return self['elapsed_time']