2010-01-20 10:27:08 +11:00
|
|
|
#! /bin/bash
|
2018-06-09 11:35:45 +10:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
# Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
|
|
|
|
|
#
|
2009-05-28 17:04:15 +02:00
|
|
|
# FS QA Test No. 092
|
|
|
|
|
#
|
|
|
|
|
# Make sure that we can mount inode64 filesystems
|
2004-07-09 03:57:16 +00:00
|
|
|
#
|
|
|
|
|
seq=`basename $0`
|
2013-03-15 12:28:02 +00:00
|
|
|
seqres=$RESULT_DIR/$seq
|
2004-07-09 03:57:16 +00:00
|
|
|
echo "QA output created by $seq"
|
|
|
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
tmp=/tmp/$$
|
|
|
|
|
status=1 # failure is the default!
|
|
|
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
|
{
|
|
|
|
|
cd /
|
|
|
|
|
rm -f $tmp.*
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
2013-03-15 12:28:04 +00:00
|
|
|
. ./common/rc
|
|
|
|
|
. ./common/filter
|
2004-07-09 03:57:16 +00:00
|
|
|
|
|
|
|
|
# real QA test starts here
|
|
|
|
|
|
|
|
|
|
# Modify as appropriate.
|
|
|
|
|
_supported_fs xfs
|
2017-07-20 21:22:05 -07:00
|
|
|
_supported_os Linux
|
2004-07-09 03:57:16 +00:00
|
|
|
_require_scratch
|
2013-03-15 11:53:21 +00:00
|
|
|
_require_no_large_scratch_dev
|
2004-07-09 03:57:16 +00:00
|
|
|
|
|
|
|
|
MOUNT_OPTIONS="$MOUNT_OPTIONS -o inode64"
|
|
|
|
|
_scratch_mkfs_xfs | _filter_mkfs 2>/dev/null
|
|
|
|
|
echo Silence is golden
|
|
|
|
|
|
2018-02-07 17:31:36 +08:00
|
|
|
_try_scratch_mount
|
2004-07-09 03:57:16 +00:00
|
|
|
[ $? -eq 0 ] || echo "inode64 mount failed unexpectedly!"
|
|
|
|
|
|
|
|
|
|
# success, all done
|
|
|
|
|
status=0
|
|
|
|
|
exit
|