diff options
author | Theodore Ts'o <tytso@mit.edu> | 2016-02-29 10:18:32 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-02-29 10:18:32 +1100 |
commit | a94334afa2ffdb104eec081a34e5d31922223b3d (patch) | |
tree | f0c6b2430e72fe04891a0c44d8c50f80cdd4be71 | |
parent | 902223bdbbf298e8860e9f2ec6b831eb5d62cee0 (diff) |
common: filter warning messages from mkfs.ext4
Commit 4a5cda8102828 ("xfstests: do not unmount tmpfs during remount")
changed generic/135 to no longer redirect stderr to /dev/null when
running _scratch_mkfs. This caused ext4 using a 1k block size to fail
when running this test because mkfs.ext4 would issue a warning message
about the use of a non-block size that wasn't expected by golden
output for the test. Fix this by filtering out warning messages in
_scratch_mkfs_ext4.
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
-rw-r--r-- | common/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -655,7 +655,7 @@ _scratch_mkfs_ext4() fi # output stored mkfs output - cat $tmp_dir.mkfserr >&2 + grep -v ^Warning: $tmp_dir.mkfserr >&2 cat $tmp_dir.mkfsstd rm -f $tmp_dir.mkfserr $tmp_dir.mkfsstd |