From: Vladimir Zapolskiy Date: Tue, 21 Jul 2020 09:38:30 +0000 (+0300) Subject: generic: add missing runtime checks for mknod/mkfifo X-Git-Tag: v2022.05.01~743 X-Git-Url: http://git.apps.os.sepia.ceph.com/?p=xfstests-dev.git;a=commitdiff_plain;h=4e723c0f82591d0b0db906f16178b5d43d17c1b2 generic: add missing runtime checks for mknod/mkfifo Some generic tests explicitly run 'mknod' or 'mkfifo' command, however the correspondent runtime check is missing, this results in a test failure instead of selecting not to execute the test. The change adds _require_mknod check to the next generic tests: * generic/157 * generic/158 * generic/294 * generic/423 Signed-off-by: Vladimir Zapolskiy Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/tests/generic/157 b/tests/generic/157 index 09b42bc9..cdd29af3 100755 --- a/tests/generic/157 +++ b/tests/generic/157 @@ -31,6 +31,7 @@ _cleanup() _supported_os Linux _require_test_reflink _require_scratch_reflink +_require_mknod rm -f $seqres.full diff --git a/tests/generic/158 b/tests/generic/158 index 369aad8b..173090a3 100755 --- a/tests/generic/158 +++ b/tests/generic/158 @@ -31,6 +31,7 @@ _cleanup() _supported_os Linux _require_test_dedupe _require_scratch_dedupe +_require_mknod rm -f $seqres.full diff --git a/tests/generic/294 b/tests/generic/294 index 32c89b03..bc13185e 100755 --- a/tests/generic/294 +++ b/tests/generic/294 @@ -33,6 +33,7 @@ _supported_fs generic _supported_os Linux _require_scratch _require_symlinks +_require_mknod rm -f $seqres.full _scratch_mkfs > $seqres.full 2>&1 || _fail "Could not mkfs scratch device" diff --git a/tests/generic/423 b/tests/generic/423 index 6db55fd6..fd538a1b 100755 --- a/tests/generic/423 +++ b/tests/generic/423 @@ -39,6 +39,7 @@ _require_test_program "stat_test" _require_test_program "af_unix" _require_statx _require_symlinks +_require_mknod function check_stat () { $here/src/stat_test $* || echo stat_test failed