summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2017-07-05 11:43:46 -0300
committerKali Kaneko <kali@leap.se>2017-07-07 21:25:20 +0200
commit2f190ac7e0dfbf5e15e4e28642d9106e835eee31 (patch)
treec6a6ef81e8304cef018af092752eab5789504fce /scripts
parentcf6e62b1170bb3ad1090ab04817718508147ca9e (diff)
[benchmarks] record start and end timestamp when benchmarking all commits
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/benchmark/benchmark-all-commits.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/benchmark/benchmark-all-commits.sh b/scripts/benchmark/benchmark-all-commits.sh
index 086342bf..7de63e17 100755
--- a/scripts/benchmark/benchmark-all-commits.sh
+++ b/scripts/benchmark/benchmark-all-commits.sh
@@ -23,6 +23,8 @@
#rm -rf testing/.tox
+echo "$(date -Iseconds) Starting a new run of ${0}..." >> results.txt
+
while /bin/true
do
@@ -67,3 +69,5 @@ do
break
fi
done
+
+echo "$(date -Iseconds) Finished the run of ${0}..." >> results.txt