summaryrefslogtreecommitdiff
path: root/tests/common/log.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common/log.sh')
-rw-r--r--tests/common/log.sh46
1 files changed, 0 insertions, 46 deletions
diff --git a/tests/common/log.sh b/tests/common/log.sh
deleted file mode 100644
index 48879706..00000000
--- a/tests/common/log.sh
+++ /dev/null
@@ -1,46 +0,0 @@
-# Helpers to log messages / status
-
-log_start ()
-{
- test="$1"
- rationale="$2"
- cat << EOF
-
-###############################################################################
-#
-# Test: $test
-#
-###############################################################################
-#
-# Rationale: $rationale
-#
-###############################################################################
-EOF
-}
-
-log_end ()
-{
- test="$1"
- cat << EOF
-###############################################################################
-#
-# End of test $test
-#
-###############################################################################
-
-EOF
-}
-
-log_status ()
-{
- test="$1"
- status="$2"
- cat << EOF
-###############################################################################
-#
-# Status of test $test: $status
-#
-###############################################################################
-EOF
-}
-