From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeremiah@pdp10.guru Subject: bug#36175: python@3.7.0 Date: Tue, 11 Jun 2019 20:57:01 +0000 Message-ID: <878su7u9gi.fsf@ITSx01.pdp10.guru> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:43634) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hap1S-0000qu-Jk for bug-guix@gnu.org; Tue, 11 Jun 2019 18:13:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1haoqA-0007Jh-AG for bug-guix@gnu.org; Tue, 11 Jun 2019 18:02:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46778) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1haoqA-0007JV-7Y for bug-guix@gnu.org; Tue, 11 Jun 2019 18:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1haoqA-0002TJ-40 for bug-guix@gnu.org; Tue, 11 Jun 2019 18:02:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:57860) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hanwM-0004De-Ie for bug-guix@gnu.org; Tue, 11 Jun 2019 17:04:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hanpV-0002tU-TY for bug-guix@gnu.org; Tue, 11 Jun 2019 16:57:19 -0400 Received: from itsx01.pdp10.guru ([74.207.247.251]:55084 helo=itsx01) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hanpS-0002hy-99 for bug-guix@gnu.org; Tue, 11 Jun 2019 16:57:17 -0400 Received: from auennplxrtxfoohp by itsx01 with local (Exim 4.89) (envelope-from ) id 1hanpF-0004kB-Fn for bug-guix@gnu.org; Tue, 11 Jun 2019 20:57:01 +0000 List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 36175@debbugs.gnu.org Currently python@3.7.0 fails to build on low memory systems; despite actually building successfully. The diff required to disable the test is as follows: diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 11f3aacf00..75afeba2a1 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -310,6 +310,8 @@ data types.") ;; memory on some systems: ;; "Lib/test/test_socket.py" + ;; Allow python to be built on lower memory systems + "Lib/test/test_mmap.py" ;; These tests fail on AArch64. "Lib/ctypes/test/test_win32.py"