mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-01 05:53:56 +08:00
Ignore .failed and .new files when running e2fsck tests.
This commit is contained in:
parent
bd512b6868
commit
888b29d14b
@ -4,12 +4,13 @@
|
||||
#
|
||||
|
||||
if test "$1"x = x ; then
|
||||
TESTS=$SRCDIR/[a-zA-Z]_*
|
||||
TESTS=`ls -d $SRCDIR/[a-zA-Z]_* | egrep -v "\.failed|\.new"`
|
||||
else
|
||||
TESTS=
|
||||
for i
|
||||
do
|
||||
case $i in
|
||||
*.failed|*.new) continue ;;
|
||||
[a-zA-Z]) TESTS="$TESTS $SRCDIR/${i}_*" ;;
|
||||
*) TESTS="$TESTS $SRCDIR/$i" ;;
|
||||
esac
|
||||
|
Loading…
Reference in New Issue
Block a user