On Wed, 2022-11-09 at 14:26 -0800, Catherine Hoang wrote: > Add a test to verify the xfs_spaceman fsuuid functionality. > > Signed-off-by: Catherine Hoang <catherine.hoang@xxxxxxxxxx> Looks simple enough Reviewed-by: Allison Henderson <allison.henderson@xxxxxxxxxx> > --- > tests/xfs/557 | 31 +++++++++++++++++++++++++++++++ > tests/xfs/557.out | 2 ++ > 2 files changed, 33 insertions(+) > create mode 100755 tests/xfs/557 > create mode 100644 tests/xfs/557.out > > diff --git a/tests/xfs/557 b/tests/xfs/557 > new file mode 100755 > index 00000000..0b41e693 > --- /dev/null > +++ b/tests/xfs/557 > @@ -0,0 +1,31 @@ > +#! /bin/bash > +# SPDX-License-Identifier: GPL-2.0 > +# Copyright (c) 2022 Oracle. All Rights Reserved. > +# > +# FS QA Test 557 > +# > +# Test to verify xfs_spaceman fsuuid functionality > +# > +. ./common/preamble > +_begin_fstest auto quick spaceman > + > +# real QA test starts here > +_supported_fs xfs > +_require_xfs_spaceman_command "fsuuid" > +_require_scratch > + > +_scratch_mkfs >> $seqres.full > +_scratch_mount >> $seqres.full > + > +expected_uuid="$(_scratch_xfs_admin -u)" > +actual_uuid="$($XFS_SPACEMAN_PROG -c "fsuuid" $SCRATCH_MNT)" > + > +if [ "$expected_uuid" != "$actual_uuid" ]; then > + echo "expected UUID ($expected_uuid) != actual UUID > ($actual_uuid)" > +fi > + > +echo "Silence is golden" > + > +# success, all done > +status=0 > +exit > diff --git a/tests/xfs/557.out b/tests/xfs/557.out > new file mode 100644 > index 00000000..1f1ae1d4 > --- /dev/null > +++ b/tests/xfs/557.out > @@ -0,0 +1,2 @@ > +QA output created by 557 > +Silence is golden