@@ -3481,7 +3481,7 @@ run_check()
"$@" >> $seqres.full 2>&1 || _fail "failed: '$@'"
}
-_require_test_symlinks()
+_require_symlinks()
{
local target=`mktemp -p $TEST_DIR`
local link=`mktemp -p $TEST_DIR -u`
@@ -48,7 +48,7 @@ _touch()
# real QA test starts here
_supported_fs generic
_require_test
-_require_test_symlinks
+_require_symlinks
_supported_os Linux
@@ -30,7 +30,7 @@ _supported_os Linux
_require_test
_require_renameat2
-_require_test_symlinks
+_require_symlinks
# real QA test starts here
@@ -30,7 +30,7 @@ _supported_os Linux
_require_test
_require_renameat2 noreplace
-_require_test_symlinks
+_require_symlinks
# real QA test starts here
@@ -30,7 +30,7 @@ _supported_os Linux
_require_test
_require_renameat2 exchange
-_require_test_symlinks
+_require_symlinks
# real QA test starts here
@@ -37,7 +37,7 @@ _cleanup()
# Modify as appropriate.
_supported_fs generic
_supported_os Linux
-_require_test_symlinks
+_require_symlinks
_require_test
_require_scratch
_require_loop
@@ -30,7 +30,7 @@ _supported_os Linux
_require_test
_require_renameat2 whiteout
-_require_test_symlinks
+_require_symlinks
# real QA test starts here
Generally these tests are not restricted to one device or the other; testing the test device will suffice to determine the capability but it doesn't need to be named that way. Signed-off-by: Eric Sandeen <sandeen@redhat.com> ---