File: script

package info (click to toggle)
e2fsprogs 1.47.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie, trixie-proposed-updates
  • size: 44,040 kB
  • sloc: ansic: 132,791; sh: 7,273; makefile: 5,315; awk: 524; perl: 376; cpp: 207; sed: 186; python: 23
file content (13 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"
os=$(uname -s)
if [ "$os" = "Darwin" -o "$os" = "GNU" ]; then
	# creates a 44GB filesystem
	echo "$test_name: $DESCRIPTION: skipped for $os"
	return 0
fi
. $cmd_dir/run_mke2fs
unset DUMPE2FS_IGNORE_80COL