| if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then |
| gunzip < $IMAGE > $TMPFILE |
| echo "resize2fs test" > $OUT |
| # Look at existing inline extended attribute |
| echo "debugfs -R ''stat file'' test.img 2>&1 | grep ''^Inode\|in inode body\|name = ''" >> $OUT |
| $DEBUGFS -R "stat file" $TMPFILE 2>&1 | grep "^Inode\|in inode body\|name = " >> $OUT |
| echo Exit status is $status >> $OUT |
| echo "resize2fs test.img 5M" >> $OUT |
| $RESIZE2FS $TMPFILE 5M 2>&1 >> $OUT.new 2>&1 |
| echo Exit status is $status >> $OUT.new |
| sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new >> $OUT |
| # Look at inline extended attribute in resized fs |
| echo "debugfs -R ''stat file'' test.img 2>&1 | grep ''^Inode\|in inode body\|name = ''" >> $OUT |
| $DEBUGFS -R "stat file" $TMPFILE 2>&1 | grep "^Inode\|in inode body\|name = " >> $OUT |
| echo Exit status is $status >> $OUT |
| if [ "$status" = 0 ] ; then |
| echo "$test_name: $test_description: ok" |
| echo "$test_name: $test_description: failed" |
| diff $DIFF_OPTS $EXP $OUT > $test_name.failed |
| unset IMAGE FSCK_OPT OUT EXP |
| else #if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then |
| echo "$test_name: $test_description: skipped" |