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:
Andreas Dilger 2017-10-15 16:23:24 -04:00 committed by Theodore Ts'o
parent 655fb3db19
commit a0e173cd0e
35 changed files with 35 additions and 35 deletions

View File

@ -1 +1 @@
block relocation table using the memory array implementation
block relocation table using memory array implementation

View File

@ -1 +1 @@
inode relocation table using the memory array implementation
inode relocation table using memory array implementation

View File

@ -1 +1 @@
fast symlink with external xattr block on bigalloc filesystem
fast symlink + xattr block on bigalloc fs

View File

@ -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

View File

@ -1 +1 @@
convert blockmap and extents files to extents files
convert blockmap to extents files

View File

@ -1 +1 @@
deleted inode with a bad csum that wasn't getting fixed (metadata_csum)
deleted inode with bad metadata_csum wasn't fixed

View File

@ -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

View File

@ -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

View File

@ -1 +1 @@
crash e2fsck with a dir with an impossibly high logical blk offset
dir crashes e2fsck with impossible logical blk offset

View File

@ -1 +1 @@
can't allocate extent tree block while recreating journal
can't allocate extent tree block recreating journal

View File

@ -1 +1 @@
force fsck to rebuild a corrupted rootdir w/ metadata_csum
force rebuild corrupted rootdir w/ metadata_csum

View File

@ -1 +1 @@
fallocated extents after nonzero i_size and total extents > 4
fallocate extents w/ nonzero i_size and extents > 4

View File

@ -1 +1 @@
write EA when i_extra_size is too small to make sense
write EA when i_extra_size is too small

View File

@ -1 +1 @@
corrupt external journal fs superblock block (metadata_csum)
corrupt mcsum ext jnl fs superblock block

View File

@ -1 +1 @@
corrupt external journal fs superblock csum (metadata_csum)
corrupt external journal superblock metadata_csum

View File

@ -1 +1 @@
revoked transaction nuking free space w/ ext. journal
revoke trans nuking free space w/ ext. journal

View File

@ -1 +1 @@
revoked transaction nuking free space on 32bit,metadata_csum
revoked trans nuking free space 32bit,mcsum

View File

@ -1 +1 @@
revoked transaction nuking free space on 64bit,metadata_csum
revoke trans nuking free space 64bit,mcsum

View File

@ -1 +1 @@
transaction nuking free space on 32bit,metadata_csum
trans nuking free space 32bit,meta_csum

View File

@ -1 +1 @@
transaction nuking free space on 64bit,metadata_csum
trans nuking free space 64bit,meta_csum

View File

@ -1 +1 @@
revoke blocks of transaction nuking the bitmaps on 64bit,metadata_csum
revoke trans nuking bmap 64bit,meta_csum

View File

@ -1 +1 @@
transaction nuking the bitmaps on 64bit,metadata_csum
trans nuking bitmaps 64bit,meta_csum

View File

@ -1 +1 @@
transaction nuking the bitmaps with old journal checksum (v1)
trans nuking bitmaps v1 journal csum

View File

@ -1 +1 @@
ensure we can't recover the journal with journal open
don't recover open journal

View File

@ -1 +1 @@
uncommitted transaction nuking the bitmaps on 64bit,metadata_csum (debugfs recover)
uncommitted trans nuking bmap 64bit,mcsum

View File

@ -1 +1 @@
uncommitted transaction nuking the bitmaps on 64bit,metadata_csum
uncommitted trans nuking bmap 64b,mcsum

View File

@ -1 +1 @@
mke2fs creating a hugefile fs with a lot of slack
mke2fs create hugefile fs with slack

View File

@ -1 +1 @@
convert a totally full filesystem to 64bit, then expand
convert+expand full fs to 64bit

View File

@ -1 +1 @@
convert 32bit fs to 64bit fs, forcing inode table move
convert 32 to 64bit w/ itable move

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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