summaryrefslogtreecommitdiff
path: root/079
diff options
context:
space:
mode:
Diffstat (limited to '079')
-rwxr-xr-x07912
1 files changed, 9 insertions, 3 deletions
diff --git a/079 b/079
index 6c43fe7e..8f6e179d 100755
--- a/079
+++ b/079
@@ -46,7 +46,7 @@ _cleanup()
. ./common.filter
. ./common.attr
-_supported_fs xfs
+_supported_fs generic
_supported_os Linux
_require_attrs
@@ -55,10 +55,16 @@ _require_scratch
[ -x $timmutable ] || _notrun "t_immutable was not built for this platform"
# real QA test starts here
-_scratch_mkfs_xfs 2>&1 >/dev/null || _fail "mkfs failed"
+_scratch_mkfs >/dev/null 2>&1 || _fail "mkfs failed"
_scratch_mount || _fail "mount failed"
echo "*** starting up"
-$timmutable -c $SCRATCH_MNT/$seq
+$timmutable -c $SCRATCH_MNT/$seq >$tmp.out 2>&1
+if grep -q 'Operation not supported' $tmp.out; then
+ rm -f $tmp.out
+ _notrun "Setting immutable/append flag not supported"
+fi
+cat $tmp.out
+rm -f $tmp.out
status=$?
exit