summaryrefslogtreecommitdiffstats
path: root/tests/functions.sh
diff options
context:
space:
mode:
authorBenno Schulenberg2015-02-17 21:45:46 +0100
committerKarel Zak2015-02-19 10:55:10 +0100
commit0209a128b5da2febdf0fe922f51c148e365371e1 (patch)
treef5177ba0f6f1c5d2dc3681fa1203d9a2e7549a09 /tests/functions.sh
parentMerge branch 'hwman2' of https://github.com/jwpi/util-linux (diff)
downloadkernel-qcow2-util-linux-0209a128b5da2febdf0fe922f51c148e365371e1.tar.gz
kernel-qcow2-util-linux-0209a128b5da2febdf0fe922f51c148e365371e1.tar.xz
kernel-qcow2-util-linux-0209a128b5da2febdf0fe922f51c148e365371e1.zip
tests: improve some wordings of the output
For one, replace the puzzlingly stern imperative "IGNORE" with the simple and light-hearted and descriptive "SKIPPED". Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'tests/functions.sh')
-rw-r--r--tests/functions.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functions.sh b/tests/functions.sh
index 852a6a313..02f81dd5e 100644
--- a/tests/functions.sh
+++ b/tests/functions.sh
@@ -73,11 +73,11 @@ function ts_check_losetup {
if test -b "$tmp"; then
return 0
fi
- ts_skip "no loop device support"
+ ts_skip "no loop-device support"
}
function ts_skip_subtest {
- ts_report " IGNORE ($1)"
+ ts_report " SKIPPED ($1)"
}
function ts_skip {
@@ -90,7 +90,7 @@ function ts_skip {
function ts_skip_nonroot {
if [ $UID -ne 0 ]; then
- ts_skip "not root permissions"
+ ts_skip "no root permissions"
fi
}