mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfstests: 075 112 redirect stderr of fsx to /dev/null too
In commit c18bf42de9 a warning message
will be printed to stderr if filesystem doesn't support fallocate(2).
The warning message will fail these tests though fsx returns SUCCESS.
FSTYP -- ext3
PLATFORM -- Linux/i686 debian-dev 3.1.0+
MKFS_OPTIONS -- /dev/sda3
MOUNT_OPTIONS -- -o acl,user_xattr /dev/sda3 /mnt/sda3
075 12s ... - output mismatch (see 075.out.bad)
--- 075.out 2011-10-28 21:35:41.872573530 +0800
+++ 075.out.bad 2011-10-30 10:31:02.607058029 +0800
@@ -4,6 +4,9 @@
-----------------------------------------------
fsx.0 : -d -N numops -S 0
-----------------------------------------------
+fsx: main: filesystem does not support fallocate, disabling
+: Operation not supported
So redirect stderr of fsx to /dev/null too.
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
committed by
Christoph Hellwig
parent
73a57c642c
commit
49fabdb4c1
@@ -77,7 +77,7 @@ _do_test()
|
||||
|
||||
# This cd and use of -P gets full debug on $here (not TEST_DEV)
|
||||
cd $out
|
||||
if ! $here/ltp/fsx $_param -P $here $seq.$_n >/dev/null
|
||||
if ! $here/ltp/fsx $_param -P $here $seq.$_n &>/dev/null
|
||||
then
|
||||
echo " fsx ($_param) failed, $? - compare $seq.$_n.{good,bad,fsxlog}"
|
||||
mv $out/$seq.$_n $here/$seq.$_n.full
|
||||
|
||||
@@ -77,7 +77,7 @@ _do_test()
|
||||
|
||||
# This cd and use of -P gets full debug on $here (not TEST_DEV)
|
||||
cd $out
|
||||
if ! $here/ltp/fsx $_param -P $here $seq.$_n >/dev/null
|
||||
if ! $here/ltp/fsx $_param -P $here $seq.$_n &>/dev/null
|
||||
then
|
||||
echo " fsx ($_param) returned $? - see $seq.$_n.full"
|
||||
mv $seq.$_n.fsxlog $here/$seq.$_n.full
|
||||
|
||||
Reference in New Issue
Block a user