log full run time

This commit is contained in:
Wolfram Schneider 2017-10-07 09:07:28 +00:00
parent cea67a94b2
commit 29cff92547
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=51074

View file

@ -1,5 +1,5 @@
#!/bin/sh
# Copyright (c) 2017 Wolfram Schneider <wosch@FreeBSD.org>
# Copyright (c) 2017-2017 Wolfram Schneider <wosch@FreeBSD.org>
#
# regression test of the build of www.freebsd.org
# Based on git
@ -49,13 +49,14 @@ export NO_OBJ
export FORMATS
buildstart=""
buildstart_script="$(date +%s)"
log () {
file=$1
buildstop="$(date +%s)"
build_sec=$(($buildstop - $buildstart))
echo " ... done in $build_sec seconds"
echo " ($build_sec sec)"
}
# global build start
@ -265,6 +266,10 @@ else
echo "Please cleanup: rm -rf $dir"
fi
# full run time
buildstart=$buildstart_script
log
exit 0
#EOF