1 test_description="very large fs growth using ext4 w/64bit"
2 if ! test -x $RESIZE2FS_EXE -o ! -x $DEBUGFS_EXE; then
3 echo "$test_name: $test_description: skipped (no debugfs/resize2fs)"
7 FEATURES="-t ext4 -O 64bit"
11 E2FSCK=../e2fsck/e2fsck
14 if [ "$os" = "Darwin" -o "$os" = "GNU" -o "$os" = "FreeBSD" ]; then
15 # creates a 2TB filesystem
16 echo "$test_name: $test_description: skipped for $os"
20 . $cmd_dir/scripts/resize_test
24 if [ $RC -eq 0 ]; then
25 echo "$test_name: $test_description: ok"
27 elif [ $RC -eq 111 ]; then
28 echo "$test_name: $test_description: skipped (no large sparse files)"
31 echo "$test_name: $test_description: failed"
32 ln $LOG $test_name.failed
35 unset FEATURES SIZE_1 SIZE_2 LOG E2FSCK