From: Kevin Wolf Date: Thu, 9 Feb 2017 14:48:04 +0000 (+0100) Subject: tests: Remove FIXME comments X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2807c0cd439321dbac118b895cdd2b595f14bf4b;p=qemu.git tests: Remove FIXME comments Not requesting any permissions is actually correct for these test cases because no actual I/O or other operation covered by the permission system is performed. Signed-off-by: Kevin Wolf Reviewed-by: Max Reitz Acked-by: Fam Zheng --- diff --git a/tests/test-blockjob.c b/tests/test-blockjob.c index 1afe17b449..740e740398 100644 --- a/tests/test-blockjob.c +++ b/tests/test-blockjob.c @@ -54,7 +54,7 @@ static BlockJob *do_test_id(BlockBackend *blk, const char *id, * BlockDriverState inserted. */ static BlockBackend *create_blk(const char *name) { - /* FIXME Use real permissions */ + /* No I/O is performed on this device */ BlockBackend *blk = blk_new(0, BLK_PERM_ALL); BlockDriverState *bs; diff --git a/tests/test-throttle.c b/tests/test-throttle.c index 5846433c9f..bd7c501b2e 100644 --- a/tests/test-throttle.c +++ b/tests/test-throttle.c @@ -593,7 +593,7 @@ static void test_groups(void) BlockBackend *blk1, *blk2, *blk3; BlockBackendPublic *blkp1, *blkp2, *blkp3; - /* FIXME Use real permissions */ + /* No actual I/O is performed on these devices */ blk1 = blk_new(0, BLK_PERM_ALL); blk2 = blk_new(0, BLK_PERM_ALL); blk3 = blk_new(0, BLK_PERM_ALL);