diff options
author | Max Reitz <mreitz@redhat.com> | 2016-05-17 16:41:28 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-05-25 19:04:10 +0200 |
commit | 21a699afc8f6dc72e70d03efdcc2eab3f4608d65 (patch) | |
tree | ba7f6f918f2d93d89c2f55d3a69caf7610fda2de | |
parent | 668361898e0181c74ffc23fdecfb575a7e7c0f3c (diff) | |
download | qemu-21a699afc8f6dc72e70d03efdcc2eab3f4608d65.zip qemu-21a699afc8f6dc72e70d03efdcc2eab3f4608d65.tar.gz qemu-21a699afc8f6dc72e70d03efdcc2eab3f4608d65.tar.bz2 |
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 <mreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | tests/test-throttle.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-throttle.c b/tests/test-throttle.c index 5ec966c..d7fb0a6 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); |