]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: improve some wordings of the output
authorBenno Schulenberg <bensberg@justemail.net>
Tue, 17 Feb 2015 20:45:46 +0000 (21:45 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 19 Feb 2015 09:55:10 +0000 (10:55 +0100)
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>
tests/functions.sh

index 852a6a31391fe4330bc6ed9f965efcd27db760fb..02f81dd5eb69e8e6e7b4534ad9a30c650ef40e06 100644 (file)
@@ -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
 }