diff options
author | David Sterba <dsterba@suse.com> | 2018-05-17 01:00:44 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-05-29 19:12:52 +0300 |
commit | 315b76b46232758836f2d431e0963567f796116f (patch) | |
tree | b7b9ae5e9dce42de9c25744f4461c110c6b82dc9 /fs/btrfs/tests/extent-io-tests.c | |
parent | 3c7251f2f8888086c5769f83651018a5494f784b (diff) | |
download | linux-315b76b46232758836f2d431e0963567f796116f.tar.xz |
btrfs: tests: drop newline from test_msg strings
Now that test_err strings do not need the newline, remove them also from
the test_msg.
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/tests/extent-io-tests.c')
-rw-r--r-- | fs/btrfs/tests/extent-io-tests.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/btrfs/tests/extent-io-tests.c b/fs/btrfs/tests/extent-io-tests.c index f17e2e31d64f..d9269a531a4d 100644 --- a/fs/btrfs/tests/extent-io-tests.c +++ b/fs/btrfs/tests/extent-io-tests.c @@ -68,7 +68,7 @@ static int test_find_delalloc(u32 sectorsize) u64 found; int ret = -EINVAL; - test_msg("running find delalloc tests\n"); + test_msg("running find delalloc tests"); inode = btrfs_new_test_inode(); if (!inode) { @@ -377,7 +377,7 @@ static int test_eb_bitmaps(u32 sectorsize, u32 nodesize) struct extent_buffer *eb; int ret; - test_msg("running extent buffer bitmap tests\n"); + test_msg("running extent buffer bitmap tests"); /* * In ppc64, sectorsize can be 64K, thus 4 * 64K will be larger than @@ -425,7 +425,7 @@ int btrfs_test_extent_io(u32 sectorsize, u32 nodesize) { int ret; - test_msg("running extent I/O tests\n"); + test_msg("running extent I/O tests"); ret = test_find_delalloc(sectorsize); if (ret) @@ -433,6 +433,6 @@ int btrfs_test_extent_io(u32 sectorsize, u32 nodesize) ret = test_eb_bitmaps(sectorsize, nodesize); out: - test_msg("extent I/O tests finished\n"); + test_msg("extent I/O tests finished"); return ret; } |