On Wed, Apr 28, 2021 at 01:03:39AM +0800, Eryu Guan wrote: > On Tue, Apr 27, 2021 at 12:44:19PM -0400, Kent Overstreet wrote: > > This fixes spurious test failures caused by broken pipe messages. > > > > Signed-off-by: Kent Overstreet <kent.overstreet@xxxxxxxxx> > > --- > > tests/generic/081 | 2 +- > > tests/generic/108 | 2 +- > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/tests/generic/081 b/tests/generic/081 > > index 5dff079852..26702007ab 100755 > > --- a/tests/generic/081 > > +++ b/tests/generic/081 > > @@ -70,7 +70,7 @@ _scratch_mkfs_sized $((300 * 1024 * 1024)) >>$seqres.full 2>&1 > > $LVM_PROG vgcreate -f $vgname $SCRATCH_DEV >>$seqres.full 2>&1 > > # We use yes pipe instead of 'lvcreate --yes' because old version of lvm > > # (like 2.02.95 in RHEL6) don't support --yes option > > -yes | $LVM_PROG lvcreate -L 256M -n $lvname $vgname >>$seqres.full 2>&1 > > +$LVM_PROG lvcreate --yes -L 256M -n $lvname $vgname >>$seqres.full 2>&1 > > Please see above comments, we use yes pipe intentionally. I don't see > how this would result in broken pipe. Would you please provide more > details? And let's see if we could fix the broken pipe issue. If lvcreate never ask y/n - never reads from standard input, then echo sees a broken pipe when it tries to write. That's what I get without this patch.