From d2f92512f699cb34f6373c43e8da7f5907e2abd0 Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Fri, 29 Oct 2021 23:29:41 +0200 Subject: [PATCH] support/testing: test_jffs2.py: update logical eraseblock size for qemu >= 2.9 The test_jffs2 test fail for the same reason as test_ubi test with qemu >= 2.9 due to a qemu 2.8 bug. See commit d8447c38f53f98e1df4a209e9f70e54f8b60f36e. Divide the erase block size by two. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/1687590514 Signed-off-by: Romain Naour Signed-off-by: Yann E. MORIN --- support/testing/tests/fs/test_jffs2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/fs/test_jffs2.py b/support/testing/tests/fs/test_jffs2.py index f595e408d5..1806bd7e3c 100644 --- a/support/testing/tests/fs/test_jffs2.py +++ b/support/testing/tests/fs/test_jffs2.py @@ -16,7 +16,7 @@ class TestJffs2(infra.basetest.BRTest): """ BR2_TARGET_ROOTFS_JFFS2=y BR2_TARGET_ROOTFS_JFFS2_CUSTOM=y - BR2_TARGET_ROOTFS_JFFS2_CUSTOM_EBSIZE=0x80000 + BR2_TARGET_ROOTFS_JFFS2_CUSTOM_EBSIZE=0x40000 BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER=y BR2_TARGET_ROOTFS_JFFS2_PAD=y BR2_TARGET_ROOTFS_JFFS2_PADSIZE=0x4000000