diff --git a/tests/test_utils.sh b/tests/test_utils.sh index ca2369cf7f9ceadb3548e476ee49302faa12c038..e490fa66649a0c6e1aa2c921799c9a90ee74d105 100755 --- a/tests/test_utils.sh +++ b/tests/test_utils.sh @@ -96,6 +96,15 @@ if [ ! -z "$(diff *)" ]; then exit 1 fi echo '[Ok]' -popd > /dev/null rm -r $backupdir +popd > /dev/null + +############################################################################### +# Below we execute other util commands as a simple check that they do not fail. +############################################################################### +echo -n 'testing logging... ' +$UTILSPATH/log.sh "start" +$UTILSPATH/log.sh "get" > /dev/null +$UTILSPATH/log.sh "stop" +echo '[Ok]' echo '[Completed]'