From unknown Mon Jun 23 07:53:15 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#29058] [PATCH] tests: install: Estimate the installation system disk size. Resent-From: Hartmut Goebel Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 29 Oct 2017 18:54:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 29058 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 29058@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.150930318913381 (code B ref -1); Sun, 29 Oct 2017 18:54:02 +0000 Received: (at submit) by debbugs.gnu.org; 29 Oct 2017 18:53:09 +0000 Received: from localhost ([127.0.0.1]:40882 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e8sho-0003Tk-98 for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:08 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50706) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e8shm-0003TF-Qt for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e8shg-0001Nx-KN for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:01 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:59413) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e8shg-0001Nt-HJ for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:00 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41677) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e8shf-0006FV-GP for guix-patches@gnu.org; Sun, 29 Oct 2017 14:53:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e8sha-0001Mp-MF for guix-patches@gnu.org; Sun, 29 Oct 2017 14:52:59 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:50194) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e8sha-0001MW-F3 for guix-patches@gnu.org; Sun, 29 Oct 2017 14:52:54 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3yQ6F04WKBz1qsCn for ; Sun, 29 Oct 2017 19:52:52 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 3yQ6F03SNPz1qqkx for ; Sun, 29 Oct 2017 19:52:52 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id hOLTD7xCoS1W for ; Sun, 29 Oct 2017 19:52:51 +0100 (CET) Received: from hermia.goebel-consult.de (ppp-93-104-93-111.dynamic.mnet-online.de [93.104.93.111]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Sun, 29 Oct 2017 19:52:51 +0100 (CET) Received: from lenashee.goebel-consult.de (lenashee.goebel-consult.de [192.168.110.2]) by hermia.goebel-consult.de (Postfix) with ESMTP id 6FB2C60027 for ; Sun, 29 Oct 2017 19:52:51 +0100 (CET) From: Hartmut Goebel Date: Sun, 29 Oct 2017 19:52:50 +0100 Message-Id: <20171029185250.32037-1-h.goebel@crazy-compilers.com> X-Mailer: git-send-email 2.13.5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) 1500 MiB are too small for a current system, thus use let system-disk-image estimate the required size. * gnu/tests/install.scm: (run-install): Pass "#:disk-image-size 'guess" to system-disk-image. --- gnu/tests/install.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index d0cc08f43..a80c520ec 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -219,7 +219,7 @@ packages defined in installation-os." (image (system-disk-image (operating-system-with-gc-roots os (list target)) - #:disk-image-size (* 1500 MiB) + #:disk-image-size 'guess #:file-system-type installation-disk-image-file-system-type))) (define install -- 2.13.5 From unknown Mon Jun 23 07:53:15 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#29058] [PATCH] tests: install: Estimate the installation system disk size. Resent-From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 29 Oct 2017 21:34:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 29058 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Hartmut Goebel Cc: 29058@debbugs.gnu.org Received: via spool by 29058-submit@debbugs.gnu.org id=B29058.150931282528129 (code B ref 29058); Sun, 29 Oct 2017 21:34:01 +0000 Received: (at 29058) by debbugs.gnu.org; 29 Oct 2017 21:33:45 +0000 Received: from localhost ([127.0.0.1]:41016 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e8vDE-0007Jd-VQ for submit@debbugs.gnu.org; Sun, 29 Oct 2017 17:33:45 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:35554) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e8vDD-0007JV-Hi for 29058@debbugs.gnu.org; Sun, 29 Oct 2017 17:33:44 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 4F848F96D; Sun, 29 Oct 2017 22:33:44 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3PUQsB9IPrdQ; Sun, 29 Oct 2017 22:33:43 +0100 (CET) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 0EFD0F951; Sun, 29 Oct 2017 22:33:42 +0100 (CET) From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20171029185250.32037-1-h.goebel@crazy-compilers.com> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 8 Brumaire an 226 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Sun, 29 Oct 2017 22:33:40 +0100 In-Reply-To: <20171029185250.32037-1-h.goebel@crazy-compilers.com> (Hartmut Goebel's message of "Sun, 29 Oct 2017 19:52:50 +0100") Message-ID: <87mv491vwr.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 1.0 (+) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) Hartmut Goebel skribis: > 1500 MiB are too small for a current system, thus use let > system-disk-image estimate the required size. > > * gnu/tests/install.scm: (run-install): Pass "#:disk-image-size > 'guess" to system-disk-image. Good idea, LGTM! Thanks, Ludo'. From unknown Mon Jun 23 07:53:15 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Hartmut Goebel Subject: bug#29058: closed (Re: [bug#29058] [PATCH] tests: install: Estimate the installation system disk size.) Message-ID: References: <45af75cb-c0a7-de36-99b3-6d8123117ec4@crazy-compilers.com> <20171029185250.32037-1-h.goebel@crazy-compilers.com> X-Gnu-PR-Message: they-closed 29058 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 29058@debbugs.gnu.org Date: Mon, 30 Oct 2017 08:15:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1509351302-11629-1" This is a multi-part message in MIME format... ------------=_1509351302-11629-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #29058: [PATCH] tests: install: Estimate the installation system disk size. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 29058@debbugs.gnu.org. --=20 29058: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D29058 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1509351302-11629-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 29058-close) by debbugs.gnu.org; 30 Oct 2017 08:14:29 +0000 Received: from localhost ([127.0.0.1]:41271 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e95DJ-00030c-6O for submit@debbugs.gnu.org; Mon, 30 Oct 2017 04:14:29 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:42056) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e95DH-00030T-1r for 29058-close@debbugs.gnu.org; Mon, 30 Oct 2017 04:14:27 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3yQS1s6hBrz1qsST; Mon, 30 Oct 2017 09:14:25 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 3yQS1s5X6Nz1r0xW; Mon, 30 Oct 2017 09:14:25 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id zDb_RYTOzZ1P; Mon, 30 Oct 2017 09:14:25 +0100 (CET) Received: from hermia.goebel-consult.de (ppp-93-104-93-111.dynamic.mnet-online.de [93.104.93.111]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS; Mon, 30 Oct 2017 09:14:24 +0100 (CET) Received: from [192.168.110.2] (lenashee.goebel-consult.de [192.168.110.2]) by hermia.goebel-consult.de (Postfix) with ESMTP id B57246079B; Mon, 30 Oct 2017 09:14:24 +0100 (CET) Subject: Re: [bug#29058] [PATCH] tests: install: Estimate the installation system disk size. To: =?UTF-8?Q?Ludovic_Court=c3=a8s?= References: <20171029185250.32037-1-h.goebel@crazy-compilers.com> <87mv491vwr.fsf@gnu.org> From: Hartmut Goebel Organization: crazy-compilers.com Message-ID: <45af75cb-c0a7-de36-99b3-6d8123117ec4@crazy-compilers.com> Date: Mon, 30 Oct 2017 09:14:24 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <87mv491vwr.fsf@gnu.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: en-US X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 29058-close Cc: 29058-close@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Pushed as 91496dfc9a4c3a708b5c2604fad3e42e101fea04 after fixing a typo in the commit message, -- Regards Hartmut Goebel | Hartmut Goebel | h.goebel@crazy-compilers.com | | www.crazy-compilers.com | compilers which you thought are impossible | ------------=_1509351302-11629-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 29 Oct 2017 18:53:09 +0000 Received: from localhost ([127.0.0.1]:40882 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e8sho-0003Tk-98 for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:08 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50706) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e8shm-0003TF-Qt for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e8shg-0001Nx-KN for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:01 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:59413) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e8shg-0001Nt-HJ for submit@debbugs.gnu.org; Sun, 29 Oct 2017 14:53:00 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41677) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e8shf-0006FV-GP for guix-patches@gnu.org; Sun, 29 Oct 2017 14:53:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e8sha-0001Mp-MF for guix-patches@gnu.org; Sun, 29 Oct 2017 14:52:59 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:50194) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e8sha-0001MW-F3 for guix-patches@gnu.org; Sun, 29 Oct 2017 14:52:54 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3yQ6F04WKBz1qsCn for ; Sun, 29 Oct 2017 19:52:52 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 3yQ6F03SNPz1qqkx for ; Sun, 29 Oct 2017 19:52:52 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id hOLTD7xCoS1W for ; Sun, 29 Oct 2017 19:52:51 +0100 (CET) Received: from hermia.goebel-consult.de (ppp-93-104-93-111.dynamic.mnet-online.de [93.104.93.111]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Sun, 29 Oct 2017 19:52:51 +0100 (CET) Received: from lenashee.goebel-consult.de (lenashee.goebel-consult.de [192.168.110.2]) by hermia.goebel-consult.de (Postfix) with ESMTP id 6FB2C60027 for ; Sun, 29 Oct 2017 19:52:51 +0100 (CET) From: Hartmut Goebel To: guix-patches@gnu.org Subject: [PATCH] tests: install: Estimate the installation system disk size. Date: Sun, 29 Oct 2017 19:52:50 +0100 Message-Id: <20171029185250.32037-1-h.goebel@crazy-compilers.com> X-Mailer: git-send-email 2.13.5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) 1500 MiB are too small for a current system, thus use let system-disk-image estimate the required size. * gnu/tests/install.scm: (run-install): Pass "#:disk-image-size 'guess" to system-disk-image. --- gnu/tests/install.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index d0cc08f43..a80c520ec 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -219,7 +219,7 @@ packages defined in installation-os." (image (system-disk-image (operating-system-with-gc-roots os (list target)) - #:disk-image-size (* 1500 MiB) + #:disk-image-size 'guess #:file-system-type installation-disk-image-file-system-type))) (define install -- 2.13.5 ------------=_1509351302-11629-1--