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.
13 lines
407 B
13 lines
407 B
DESCRIPTION="journal over 4GB in size"
|
|
FS_SIZE=11000000
|
|
DUMPE2FS_IGNORE_80COL=1
|
|
export DUMPE2FS_IGNORE_80COL
|
|
MKE2FS_OPTS="-t ext4 -G 512 -N 1280 -J size=5000 -q -E lazy_journal_init,lazy_itable_init,nodiscard"
|
|
if [ $(uname -s) = "Darwin" ]; then
|
|
# creates a 44GB filesystem
|
|
echo "$test_name: $DESCRIPTION: skipped for HFS+ (no sparse files)"
|
|
return 0
|
|
fi
|
|
. $cmd_dir/run_mke2fs
|
|
unset DUMPE2FS_IGNORE_80COL
|