mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-23 10:04:01 +08:00
tests: shorten test descriptions to fit in 80 columns
While not critical to functionality, it is easier to see the pass/fail status of each test if they are not wrapped onto the next line. Shorten test descriptions so the name+description fit in 80 columns. Signed-off-by: Andreas Dilger <adilger@dilger.ca> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
655fb3db19
commit
a0e173cd0e
@ -1 +1 @@
|
||||
block relocation table using the memory array implementation
|
||||
block relocation table using memory array implementation
|
||||
|
@ -1 +1 @@
|
||||
inode relocation table using the memory array implementation
|
||||
inode relocation table using memory array implementation
|
||||
|
@ -1 +1 @@
|
||||
fast symlink with external xattr block on bigalloc filesystem
|
||||
fast symlink + xattr block on bigalloc fs
|
||||
|
@ -1 +1 @@
|
||||
infinite loop due to off by one error when finding free space for inode table relocation
|
||||
infinite loop when finding table free space
|
||||
|
@ -1 +1 @@
|
||||
convert blockmap and extents files to extents files
|
||||
convert blockmap to extents files
|
||||
|
@ -1 +1 @@
|
||||
deleted inode with a bad csum that wasn't getting fixed (metadata_csum)
|
||||
deleted inode with bad metadata_csum wasn't fixed
|
||||
|
@ -1 +1 @@
|
||||
dir block w/ missing/bad csum, no tail, or dir block corruption (metadata_csum)
|
||||
dir block w/ missing/bad csum/tail or block corruption
|
||||
|
@ -1 +1 @@
|
||||
htree block w/ missing/bad csum, bad protective dirent, or htree index corruption (metadata_csum)
|
||||
htree block bad csum/tail dirent/htree index corruption
|
||||
|
@ -1 +1 @@
|
||||
crash e2fsck with a dir with an impossibly high logical blk offset
|
||||
dir crashes e2fsck with impossible logical blk offset
|
||||
|
@ -1 +1 @@
|
||||
can't allocate extent tree block while recreating journal
|
||||
can't allocate extent tree block recreating journal
|
||||
|
@ -1 +1 @@
|
||||
force fsck to rebuild a corrupted rootdir w/ metadata_csum
|
||||
force rebuild corrupted rootdir w/ metadata_csum
|
||||
|
@ -1 +1 @@
|
||||
fallocated extents after nonzero i_size and total extents > 4
|
||||
fallocate extents w/ nonzero i_size and extents > 4
|
||||
|
@ -1 +1 @@
|
||||
write EA when i_extra_size is too small to make sense
|
||||
write EA when i_extra_size is too small
|
||||
|
@ -1 +1 @@
|
||||
corrupt external journal fs superblock block (metadata_csum)
|
||||
corrupt mcsum ext jnl fs superblock block
|
||||
|
@ -1 +1 @@
|
||||
corrupt external journal fs superblock csum (metadata_csum)
|
||||
corrupt external journal superblock metadata_csum
|
||||
|
@ -1 +1 @@
|
||||
revoked transaction nuking free space w/ ext. journal
|
||||
revoke trans nuking free space w/ ext. journal
|
||||
|
@ -1 +1 @@
|
||||
revoked transaction nuking free space on 32bit,metadata_csum
|
||||
revoked trans nuking free space 32bit,mcsum
|
||||
|
@ -1 +1 @@
|
||||
revoked transaction nuking free space on 64bit,metadata_csum
|
||||
revoke trans nuking free space 64bit,mcsum
|
||||
|
@ -1 +1 @@
|
||||
transaction nuking free space on 32bit,metadata_csum
|
||||
trans nuking free space 32bit,meta_csum
|
||||
|
@ -1 +1 @@
|
||||
transaction nuking free space on 64bit,metadata_csum
|
||||
trans nuking free space 64bit,meta_csum
|
||||
|
@ -1 +1 @@
|
||||
revoke blocks of transaction nuking the bitmaps on 64bit,metadata_csum
|
||||
revoke trans nuking bmap 64bit,meta_csum
|
||||
|
@ -1 +1 @@
|
||||
transaction nuking the bitmaps on 64bit,metadata_csum
|
||||
trans nuking bitmaps 64bit,meta_csum
|
||||
|
@ -1 +1 @@
|
||||
transaction nuking the bitmaps with old journal checksum (v1)
|
||||
trans nuking bitmaps v1 journal csum
|
||||
|
@ -1 +1 @@
|
||||
ensure we can't recover the journal with journal open
|
||||
don't recover open journal
|
||||
|
@ -1 +1 @@
|
||||
uncommitted transaction nuking the bitmaps on 64bit,metadata_csum (debugfs recover)
|
||||
uncommitted trans nuking bmap 64bit,mcsum
|
||||
|
@ -1 +1 @@
|
||||
uncommitted transaction nuking the bitmaps on 64bit,metadata_csum
|
||||
uncommitted trans nuking bmap 64b,mcsum
|
||||
|
@ -1 +1 @@
|
||||
mke2fs creating a hugefile fs with a lot of slack
|
||||
mke2fs create hugefile fs with slack
|
||||
|
@ -1 +1 @@
|
||||
convert a totally full filesystem to 64bit, then expand
|
||||
convert+expand full fs to 64bit
|
||||
|
@ -1 +1 @@
|
||||
convert 32bit fs to 64bit fs, forcing inode table move
|
||||
convert 32 to 64bit w/ itable move
|
||||
|
@ -1,4 +1,4 @@
|
||||
test_description="change uuid on a metadata-csum with mcsum-seed"
|
||||
test_description="change meta-csum uuid with mcsum-seed"
|
||||
|
||||
trap "rm -rf $TMPFILE $TMPFILE.conf" EXIT INT QUIT
|
||||
dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1
|
||||
|
@ -1,4 +1,4 @@
|
||||
test_description="disable csum seed via tune2fs after changing uuid"
|
||||
test_description="tune2fs disable csum seed after uuid change"
|
||||
|
||||
trap "rm -rf $TMPFILE $TMPFILE.conf" EXIT INT QUIT
|
||||
dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1
|
||||
|
@ -1,4 +1,4 @@
|
||||
test_description="disable csum seed on mounted fs via tune2fs after changing uuid"
|
||||
test_description="mounted tune2fs disable csum+uuid"
|
||||
|
||||
trap "rm -rf $TMPFILE $TMPFILE.conf" EXIT INT QUIT
|
||||
dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1
|
||||
|
@ -1,4 +1,4 @@
|
||||
test_description="convert fs to 64bit,metadata_csum and revert as one undo file"
|
||||
test_description="convert fs to 64bit,mcsum and revert undo file"
|
||||
if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then
|
||||
|
||||
TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo
|
||||
|
@ -1,4 +1,4 @@
|
||||
test_description="convert fs to 64bit,metadata_csum and revert as one undo file"
|
||||
test_description="convert 64bit,mcsum and revert undo file"
|
||||
if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then
|
||||
|
||||
TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo
|
||||
|
@ -1,4 +1,4 @@
|
||||
test_description="convert fs to 64bit,metadata_csum and revert both changes"
|
||||
test_description="convert 64bit,mcsum and revert both"
|
||||
if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then
|
||||
|
||||
TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo
|
||||
|
Loading…
Reference in New Issue
Block a user