From patchwork Mon Jul 10 21:45:31 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 786399 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3x5zL23D5Nz9s7C for ; Tue, 11 Jul 2017 07:46:02 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F3F6686A19; Mon, 10 Jul 2017 21:45:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 62lhatLSHJVj; Mon, 10 Jul 2017 21:45:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id D787B869BD; Mon, 10 Jul 2017 21:45:58 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 8D4F41C0CBE for ; Mon, 10 Jul 2017 21:45:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 782E4867BD for ; Mon, 10 Jul 2017 21:45:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id g3jNLmvlPqdb for ; Mon, 10 Jul 2017 21:45:55 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from exchange.essensium.com (220.77.144.195.ipv4.evonet.be [195.144.77.220]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 272C78678B for ; Mon, 10 Jul 2017 21:45:55 +0000 (UTC) Received: from localhost.localdomain (10.3.7.11) by beleexch01.local.ess-mail.com (10.3.7.8) with Microsoft SMTP Server (TLS) id 15.0.847.32; Mon, 10 Jul 2017 23:45:35 +0200 From: "Arnout Vandecappelle (Essensium/Mind)" To: Date: Mon, 10 Jul 2017 23:45:31 +0200 Message-ID: <20170710214531.15758-1-arnout@mind.be> X-Mailer: git-send-email 2.13.2 MIME-Version: 1.0 X-Originating-IP: [10.3.7.11] X-ClientProxiedBy: beleexch01.local.ess-mail.com (10.3.7.8) To beleexch01.local.ess-mail.com (10.3.7.8) Subject: [Buildroot] [PATCH] support/testing: fix TestExt4 after ext2fs refactoring X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Commit bee9e881a2d3addd6880b39f3e33a7180d0b1eb4 removed the BR2_TARGET_ROOTFS_EXT2_BLOCKS but didn't update TestExt4 that uses (tests) that option. Convert it to BR2_TARGET_ROOTFS_EXT2_SIZE, using 16M so the M gets tested as well. Fixes: https://gitlab.com/arnout/buildroot/-/jobs/21910153 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- support/testing/tests/fs/test_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/fs/test_ext.py b/support/testing/tests/fs/test_ext.py index 34321a3995..733c7469f2 100644 --- a/support/testing/tests/fs/test_ext.py +++ b/support/testing/tests/fs/test_ext.py @@ -97,7 +97,7 @@ class TestExt4(infra.basetest.BRTest): """ BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_4=y -BR2_TARGET_ROOTFS_EXT2_BLOCKS=16384 +BR2_TARGET_ROOTFS_EXT2_SIZE="16M" BR2_TARGET_ROOTFS_EXT2_INODES=3000 BR2_TARGET_ROOTFS_EXT2_RESBLKS=10 # BR2_TARGET_ROOTFS_TAR is not set