From 02393c0049c898c375773cdd104c4533a8f5d414 Mon Sep 17 00:00:00 2001 From: mulhern Date: Wed, 11 Dec 2024 17:05:47 -0500 Subject: [PATCH] Make test devices 8 GiB instead of 1 TiB Smaller devices allow for more opportunities for more complicated actions. Signed-off-by: mulhern --- test_harness.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_harness.py b/test_harness.py index 2e34082..2bd4cec 100644 --- a/test_harness.py +++ b/test_harness.py @@ -27,7 +27,7 @@ from testlib.infra import PostTestCheck _LOSETUP_BIN = "/usr/sbin/losetup" -_SIZE_OF_DEVICE = 1024**4 # 1 TiB +_SIZE_OF_DEVICE = 8 * (1024**3) # 8 GiB class _LogBlockdev: # pylint: disable=too-few-public-methods