From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41765) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e8sil-0006Hu-O4 for guix-patches@gnu.org; Sun, 29 Oct 2017 14:54:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e8sig-0001aR-S7 for guix-patches@gnu.org; Sun, 29 Oct 2017 14:54:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60435) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e8sig-0001aK-Op for guix-patches@gnu.org; Sun, 29 Oct 2017 14:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e8sig-0003V1-Hs for guix-patches@gnu.org; Sun, 29 Oct 2017 14:54:02 -0400 Subject: [bug#29058] [PATCH] tests: install: Estimate the installation system disk size. Resent-Message-ID: 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) 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> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29058@debbugs.gnu.org 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