Message ID | 1527646267-2257-1-git-send-email-xuhuan.fnst@cn.fujitsu.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, May 30, 2018 at 5:11 AM, Huan Xu <xuhuan.fnst@cn.fujitsu.com> wrote: > From: Xu Huan <xuhuan.fnst@cn.fujitsu.com> > > in generic 401 when test on fs without filesystem support > list DT_UNKNOWN file . and .. , then list all file without > . and .. > > following is test result on nfs > > generic/401 QA output created by 401 > . d > .. d > - output mismatch (see /var/lib/xfstests/results//generic/401.out.bad) > --- tests/generic/401.out 2018-05-22 04:22:11.641999979 -0400 > +++ /var/lib/xfstests/results//generic/401.out.bad 2018-05-28 23:22:42.312999931 -0400 > @@ -1,9 +1,3 @@ > QA output created by 401 > . d > .. d > -b b > -c c > -d d > -f f > --- > tests/generic/401 | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/generic/401 b/tests/generic/401 > index 74f2bea5..26938864 100755 > --- a/tests/generic/401 > +++ b/tests/generic/401 > @@ -86,8 +86,8 @@ else > # print fake dir file type for . and .. if they are DT_UNKNOWN > src/t_dir_type $testdir u | grep -F '.' | \ > awk '{ print $1, "d" }' | sort > - # list unknown files and print filename as fake file type > - src/t_dir_type $testdir u | grep -vF '.' | \ > + # list all files without . and .. and print filename as fake file type > + src/t_dir_type $testdir | grep -vF '.' | \ > awk '{ print $1, $1 }' | sort > fi > This makes the test pass by definition for unsupported dir type - it tests that the names of files in the directory is the files we created - nothing more. Its fine that you want to make NFS not fail this test, but what do you want to test? Look at the header comment - it says what the test does for xfs/ext4 and dir type feature is disabled and this change is breaking those verifications. The way I see it there are 2 options: 1. implement _require_filetype and notrun this test at all if file type is not supported. Basically that's the result of your patch, but it reports pass instead of notrun. 2. change the verification of not supported case to allow for either DT_UNKNOWN or the expected type I personally don't object to the easier option #1, but options #2 gives better test coverage. Thanks, Amir. -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/tests/generic/401 b/tests/generic/401 index 74f2bea5..26938864 100755 --- a/tests/generic/401 +++ b/tests/generic/401 @@ -86,8 +86,8 @@ else # print fake dir file type for . and .. if they are DT_UNKNOWN src/t_dir_type $testdir u | grep -F '.' | \ awk '{ print $1, "d" }' | sort - # list unknown files and print filename as fake file type - src/t_dir_type $testdir u | grep -vF '.' | \ + # list all files without . and .. and print filename as fake file type + src/t_dir_type $testdir | grep -vF '.' | \ awk '{ print $1, $1 }' | sort fi
From: Xu Huan <xuhuan.fnst@cn.fujitsu.com> in generic 401 when test on fs without filesystem support list DT_UNKNOWN file . and .. , then list all file without . and .. following is test result on nfs generic/401 QA output created by 401 . d .. d - output mismatch (see /var/lib/xfstests/results//generic/401.out.bad) --- tests/generic/401.out 2018-05-22 04:22:11.641999979 -0400 +++ /var/lib/xfstests/results//generic/401.out.bad 2018-05-28 23:22:42.312999931 -0400 @@ -1,9 +1,3 @@ QA output created by 401 . d .. d -b b -c c -d d -f f --- tests/generic/401 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)