From 1960c1c259bc27c8f1f7806b40687b7e82866f01 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 26 Dec 2021 09:04:04 +0100 Subject: Testsuite: limit QEmu test disk size to 1G to not waste space on build host --- scripts/check-qemu-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/check-qemu-install') diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 5c099a3b..105a0ae8 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -235,7 +235,7 @@ diskname_raid = None def gen_disk(name): if not os.path.isfile(name): log.info(f'Creating Disk image {name}') - c = subprocess.check_output(['qemu-img', 'create', name, '2G']) + c = subprocess.check_output(['qemu-img', 'create', name, '1G']) log.debug(c.decode()) else: log.info(f'Diskimage "{name}" already exists, using the existing one.') -- cgit v1.2.3