On 10/07/2020 20:56, Marcos Paulo de Souza wrote: > From: Marcos Paulo de Souza <mpdesouza@xxxxxxxx> > > Some recent test already ignore this output, while older ones do not. > It can sometimes make tests fail because "quota rescan" can show the > message "quota rescan started". Ignoring the output of the command > solves this problem. > > Signed-off-by: Marcos Paulo de Souza <mpdesouza@xxxxxxxx> > --- [...] > -_run_btrfs_util_prog quota rescan -w $SCRATCH_MNT > +_run_btrfs_util_prog quota rescan -w $SCRATCH_MNT >/dev/null I think it's better to filter the "quota rescan started" output instead of redirecting all output to /dev/null. This way you'll get the real errors from 'btrfs quota rescan'.