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>
This commit is contained in:
Benno Schulenberg 2015-02-17 21:45:46 +01:00 committed by Karel Zak
parent d65c7c7701
commit 0209a128b5
1 changed files with 3 additions and 3 deletions

View 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
}