From: Max Reitz Date: Tue, 17 May 2016 14:41:28 +0000 (+0200) Subject: tests: Drop BDS from test-throttle.c X-Git-Tag: v2.7.0-rc0~165^2~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=21a699afc8f6dc72e70d03efdcc2eab3f4608d65;p=thirdparty%2Fqemu.git tests: Drop BDS from test-throttle.c Now that throttling has been moved to the BlockBackend level, we do not need to create a BDS along with the BB in the I/O throttling test. Signed-off-by: Max Reitz Reviewed-by: Kevin Wolf Signed-off-by: Kevin Wolf --- diff --git a/tests/test-throttle.c b/tests/test-throttle.c index 5ec966c8a42..d7fb0a64514 100644 --- a/tests/test-throttle.c +++ b/tests/test-throttle.c @@ -578,9 +578,9 @@ static void test_groups(void) BlockBackend *blk1, *blk2, *blk3; BlockBackendPublic *blkp1, *blkp2, *blkp3; - blk1 = blk_new_with_bs(&error_abort); - blk2 = blk_new_with_bs(&error_abort); - blk3 = blk_new_with_bs(&error_abort); + blk1 = blk_new(&error_abort); + blk2 = blk_new(&error_abort); + blk3 = blk_new(&error_abort); blkp1 = blk_get_public(blk1); blkp2 = blk_get_public(blk2);