From 4b50572dc998de864f2a9feef0330991c1c40ae7 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sun, 6 Nov 2022 07:56:47 -0500 Subject: [PATCH] testing: output elapsed time for provisioning --- tests/vagrant/vanilla/Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/vagrant/vanilla/Vagrantfile b/tests/vagrant/vanilla/Vagrantfile index 538c5e9c..c54511d2 100644 --- a/tests/vagrant/vanilla/Vagrantfile +++ b/tests/vagrant/vanilla/Vagrantfile @@ -59,6 +59,7 @@ if [ \\$EUID -ne 0 ]; then echo "Must be root" exit 1 fi +start=\\$(date +%s) cd /mailinabox export PRIMARY_HOSTNAME=vanilla.local #export FEATURE_MUNIN=false @@ -68,6 +69,8 @@ tests/system-setup/vanilla.sh # --enable-mod=roundcube-master \ # --enable-mod=roundcube-debug \ # --enable-mod=rcmcarddav-composer +end=\\$(date +%s) +echo "Provisioning took \\$(source tests/lib/misc.sh; elapsed_pretty \\$start \\$end)" EOF chmod +x /tmp/provision.sh /tmp/provision.sh