Home | History | Annotate | Download | only in r_ext4_small_bg
      1 if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then
      2 
      3 test_description="ext4 1024 blocksize with small block groups"
      4 FEATURES="-t ext4 -O ^resize_inode -b 1024 -g 512"
      5 SIZE_1=64M
      6 SIZE_2=2G
      7 LOG=$test_name.log
      8 E2FSCK=../e2fsck/e2fsck
      9 
     10 
     11 . $cmd_dir/scripts/resize_test
     12 
     13 if resize_test
     14 then
     15 	echo "$test_name: $test_description: ok"
     16 	touch $test_name.ok
     17 else
     18 	echo "$test_name: $test_description: failed"
     19 	touch $test_name.failed
     20 fi
     21 
     22 unset FEATURES SIZE_1 SIZE_2 LOG E2FSCK
     23 
     24 else #if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then
     25 	echo "$test_name: $test_description: skipped"
     26 fi 
     27 
     28