btrfs: tests: drop messages when some tests finish
authorDavid Sterba <dsterba@suse.com>
Mon, 18 Mar 2019 12:54:36 +0000 (13:54 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 29 Apr 2019 17:02:28 +0000 (19:02 +0200)
The messages like 'extent I/O tests finished' are redundant, if the test
fails it's quite obvious in the log and hang is also noticeable. No
other then extent_io and free space tree tests print that so make it
consistent.

Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/tests/extent-io-tests.c
fs/btrfs/tests/free-space-tests.c

index e88b7c9..7bf4d57 100644 (file)
@@ -444,6 +444,5 @@ int btrfs_test_extent_io(u32 sectorsize, u32 nodesize)
 
        ret = test_eb_bitmaps(sectorsize, nodesize);
 out:
-       test_msg("extent I/O tests finished");
        return ret;
 }
index dcbe526..d0fdc94 100644 (file)
@@ -876,6 +876,5 @@ out:
        btrfs_free_dummy_block_group(cache);
        btrfs_free_dummy_root(root);
        btrfs_free_dummy_fs_info(fs_info);
-       test_msg("free space cache tests finished");
        return ret;
 }