You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
384 B
16 lines
384 B
if ! test -x $DEBUGFS_EXE; then
|
|
echo "$test_name: $test_description: skipped (no debugfs)"
|
|
return 0
|
|
fi
|
|
|
|
if test "$HTREE"x = x ; then
|
|
gunzip < $test_dir/image.gz > $TMPFILE
|
|
$DEBUGFS -w -R "feature ^dir_index" $TMPFILE >/dev/null 2>&1
|
|
gzip $TMPFILE
|
|
IMAGE="$TMPFILE".gz
|
|
EXP1=$test_dir/expect-nohtree.1
|
|
EXP2=$test_dir/expect-nohtree.2
|
|
fi
|
|
. $cmd_dir/run_e2fsck
|
|
rm -f "$TMPFILE".gz
|