summaryrefslogtreecommitdiffstats
path: root/tests/functions.sh
diff options
context:
space:
mode:
authorKarel Zak2015-03-17 11:34:22 +0100
committerKarel Zak2015-03-17 11:34:22 +0100
commitd995c2f082a710e01e7abeb10c6ca533494d0304 (patch)
tree83931977391c343c5689c397e495277ab85c4ccd /tests/functions.sh
parentMerge branch 'drone-ci' of https://github.com/rudimeier/util-linux (diff)
downloadkernel-qcow2-util-linux-d995c2f082a710e01e7abeb10c6ca533494d0304.tar.gz
kernel-qcow2-util-linux-d995c2f082a710e01e7abeb10c6ca533494d0304.tar.xz
kernel-qcow2-util-linux-d995c2f082a710e01e7abeb10c6ca533494d0304.zip
tests: add --skip-loopdevs
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests/functions.sh')
-rw-r--r--tests/functions.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functions.sh b/tests/functions.sh
index bfc3fa28d..38ed03d55 100644
--- a/tests/functions.sh
+++ b/tests/functions.sh
@@ -68,7 +68,7 @@ function ts_check_losetup {
local tmp
ts_check_test_command "$TS_CMD_LOSETUP"
- if [ "$TS_OPT_FEAT_SKIP_LOOP" = "yes" ]; then
+ if [ "$TS_SKIP_LOOPDEVS" = "yes" ]; then
ts_skip "loop-device tests disabled"
fi
@@ -241,6 +241,7 @@ function ts_init_env {
TS_VERBOSE=$(ts_has_option "verbose" "$*")
TS_PARALLEL=$(ts_has_option "parallel" "$*")
TS_KNOWN_FAIL=$(ts_has_option "known-fail" "$*")
+ TS_SKIP_LOOPDEVS=$(ts_has_option "skip-loopdevs" "$*")
tmp=$( ts_has_option "memcheck" "$*")
if [ "$tmp" == "yes" -a -f /usr/bin/valgrind ]; then