diff --git a/common/filter b/common/filter index e39ac0e2..43281599 100644 --- a/common/filter +++ b/common/filter @@ -401,5 +401,10 @@ _filter_mknod() sed -e "s/mknod: [\`']\(.*\)': File exists/mknod: \1: File exists/" } +_filter_lostfound() +{ + sed -e '/^lost+found$/d' +} + # make sure this script returns success /bin/true diff --git a/tests/generic/052 b/tests/generic/052 index 74cf5b62..f7cdd09c 100755 --- a/tests/generic/052 +++ b/tests/generic/052 @@ -82,7 +82,7 @@ _scratch_mount $mnt >>$seqres.full 2>&1 \ || _fail "mount failed: $mnt $MOUNT_OPTIONS" echo "ls SCRATCH_MNT" -ls $SCRATCH_MNT +ls $SCRATCH_MNT | _filter_lostfound echo "unmount" _scratch_unmount diff --git a/tests/generic/054 b/tests/generic/054 index 238741c1..8375e574 100755 --- a/tests/generic/054 +++ b/tests/generic/054 @@ -102,7 +102,7 @@ for s in sync nosync ; do # check before on what FS should look like _echofull "ls SCRATCH_MNT" - ls $SCRATCH_MNT + ls $SCRATCH_MNT | _filter_lostfound _echofull "godown" src/godown -v -f $SCRATCH_MNT >> $seqres.full @@ -120,7 +120,7 @@ for s in sync nosync ; do # check on what FS looks like after log recovery _echofull "ls SCRATCH_MNT" - ls $SCRATCH_MNT + ls $SCRATCH_MNT | _filter_lostfound _echofull "unmount" _scratch_unmount