configure's --disable-resizer option)
+2005-01-21 Theodore Ts'o <tytso@mit.edu>
+
+ * r_resize_inode: Skip this test if resize2fs is not compiled (due
+ to configure's --disable-resizer option)
+
2005-01-19 Theodore Ts'o <tytso@mit.edu>
* r_resize_inode, m_dasd_bs, m_large_file, m_meta_bg, m_no_opt,
echo -n "resize2fs with resize_inode: "
+
+if ! test -x $RESIZE2FS; then
+ rm -f $test_name.ok $test_name.failed
+ echo "skipped"
+else
+
FSCK_OPT=-yf
OUT=$test_name.log
if [ -f $test_dir/expect.gz ]; then
$DUMPE2FS $TMPFILE 2>&1 | sed -f $cmd_dir/filter_dumpe2fs >> $OUT
-
-
rm -f $test_name.ok $test_name.failed
cmp -s $OUT $EXP
status=$?
unset IMAGE FSCK_OPT OUT EXP
+fi #if test -x $RESIZE2FS; then