From: Eric Sandeen Date: Wed, 24 Mar 2010 16:12:32 +0000 (-0500) Subject: xfstests: drop readlink of test devices X-Git-Tag: v1.1.0~180 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=64f2b6a15309ff78d41696baed77f51db765c090;p=xfstests-dev.git xfstests: drop readlink of test devices Comments say it's for devfs; it's actually breaking lvm devices, now. I think we can just drop it. Signed-off-by: Eric Sandeen Reviewed-by: Christoph Hellwig --- diff --git a/common.config b/common.config index 26906aa2..926846bf 100644 --- a/common.config +++ b/common.config @@ -230,30 +230,5 @@ if [ ! -z "$SCRATCH_MNT" -a ! -d "$SCRATCH_MNT" ]; then exit 1 fi -_readlink() -{ - if [ $# -ne 1 ]; then - echo "Usage: _readlink filename" 1>&2 - exit 1 - fi - - perl -e "\$in=\"$1\";" -e ' - $lnk = readlink($in); - if ($lnk =~ m!^/.*!) { - print "$lnk\n"; - } - else { - chomp($dir = `dirname $in`); - print "$dir/$lnk\n"; - }' -} - -# if devfs is running expand the full /dev/.. pathname - this is what will be -# returned by utilities such as mount -[ -L "$TEST_DEV" ] && TEST_DEV=`_readlink $TEST_DEV` -[ -L "$SCRATCH_DEV" ] && SCRATCH_DEV=`_readlink $SCRATCH_DEV` -[ -L "$SCRATCH_LOGDEV" ] && SCRATCH_LOGDEV=`_readlink $SCRATCH_LOGDEV` -[ -L "$SCRATCH_RTDEV" ] && SCRATCH_RTDEV=`_readlink $SCRATCH_LOGDEV` - # make sure this script returns success /bin/true