From 65dcd7614e8e35ace2fadf7189ae33f4d8cc9eab Mon Sep 17 00:00:00 2001 From: Norbert Manthey Date: Thu, 8 Apr 2021 20:06:28 +0200 Subject: [PATCH] ci: add time stamps per section Signed-off-by: Norbert Manthey --- tools/ci.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tools/ci.sh b/tools/ci.sh index 70a5b99d..3695287a 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -46,7 +46,9 @@ test_fuzzing () } if [ $TESTFUZZ -eq 1 ]; then + echo "[$SECONDS s] start fuzzing" test_fuzzing + echo "[$SECONDS s] end fuzzing" fi test_diversify () @@ -65,7 +67,9 @@ test_diversify () } if [ $TESTDIVERSIFY -eq 1 ]; then + echo "[$SECONDS s] start diverisfy testing" test_diversify + echo "[$SECONDS s] end diverisfy testing" fi # locate release library @@ -106,7 +110,9 @@ test_starexec () } if [ $TESTSTAREXEC -eq 1 ]; then + echo "[$SECONDS s] start starexec testing" test_starexec + echo "[$SECONDS s] end startexec testing" fi test_openwbo() { @@ -150,7 +156,9 @@ test_openwbo() { # test openwbo with mergesat backend if [ $TESTOPENWBO -eq 1 ]; then + echo "[$SECONDS s] start openwbo testing" test_openwbo + echo "[$SECONDS s] end openwbo testing" fi test_ipasir() { @@ -265,7 +273,9 @@ test_ipasir() { # test ipasir with mergesat backend if [ $TESTPIASIR -eq 1 ]; then + echo "[$SECONDS s] start ipasir testing" test_ipasir + echo "[$SECONDS s] end ipasir testing" fi # Forward exit status from fuzzing