Skip to content

Commit

Permalink
ci: add time stamps per section
Browse files Browse the repository at this point in the history
Signed-off-by: Norbert Manthey <[email protected]>
  • Loading branch information
conp-solutions committed Apr 8, 2021
1 parent a27f611 commit 65dcd76
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()
Expand All @@ -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
Expand Down Expand Up @@ -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() {
Expand Down Expand Up @@ -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() {
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 65dcd76

Please sign in to comment.