From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: Re: GNU Guile 1.9.0 released (alpha) Date: Sun, 21 Jun 2009 13:36:03 +0100 Message-ID: <871vpdbw7g.fsf@arudy.ossau.uklinux.net> References: <86y6rnev6m.fsf@gnu.org> <3ae3aa420906192000h57399eaayc7a642c9f97f1a98@mail.gmail.com> <3ae3aa420906201117g7db10ce3h9aecc18269060d6b@mail.gmail.com> <119243.89652.qm@web37903.mail.mud.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: ger.gmane.org 1245587790 15498 80.91.229.12 (21 Jun 2009 12:36:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 21 Jun 2009 12:36:30 +0000 (UTC) Cc: linasvepstas@gmail.com, Ludovic =?iso-8859-1?Q?Court=E8s?= , guile-devel@gnu.org To: Andy Wingo Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sun Jun 21 14:36:26 2009 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MIMHa-0006GT-7M for guile-devel@m.gmane.org; Sun, 21 Jun 2009 14:36:26 +0200 Original-Received: from localhost ([127.0.0.1]:33021 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MIMHZ-0005ox-De for guile-devel@m.gmane.org; Sun, 21 Jun 2009 08:36:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MIMHT-0005os-O4 for guile-devel@gnu.org; Sun, 21 Jun 2009 08:36:19 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MIMHO-0005lN-By for guile-devel@gnu.org; Sun, 21 Jun 2009 08:36:18 -0400 Original-Received: from [199.232.76.173] (port=36661 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MIMHO-0005lK-6a for guile-devel@gnu.org; Sun, 21 Jun 2009 08:36:14 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:34214) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MIMHL-0006LD-QS; Sun, 21 Jun 2009 08:36:12 -0400 Original-Received: from arudy (host86-152-99-133.range86-152.btcentralplus.com [86.152.99.133]) by mail3.uklinux.net (Postfix) with ESMTP id A24831FA8FB; Sun, 21 Jun 2009 13:36:08 +0100 (BST) Original-Received: from arudy.ossau.uklinux.net (arudy [127.0.0.1]) by arudy (Postfix) with ESMTP id 2653838021; Sun, 21 Jun 2009 13:36:04 +0100 (BST) In-Reply-To: (Andy Wingo's message of "Sun\, 21 Jun 2009 12\:42\:54 +0200") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.4-2.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:8742 Archived-At: --=-=-= Andy Wingo writes: > Hi Mike, > > On Sun 21 Jun 2009 08:31, Mike Gran writes: > >> Not really in a position to help, since I'm still AFK, but, >> somewhere along the line I pushed this patch to r6rs vectors >> in the String_abstraction2 tree. > > Took me a little while to understand it, but it seems the patch is > right. I committed and pushed it to master. Linas, can you try again? > > Thanks much! I've pushed a deterministic test for this (also below). (In general, when fixing something that isn't already reliably reproduced by the build, please write a regression test if feasible.) Neil --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-Deterministic-test-for-the-r6rs-ports.test-segmentat.patch >From 4574ec212aad4df9571463ee4d45beb2607e51ad Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Sun, 21 Jun 2009 13:31:20 +0100 Subject: [PATCH] Deterministic test for the r6rs-ports.test segmentation fault * test-suite/tests/r6rs-ports.test ("7.2.7 Input Ports"): Add (gc), to test the (ex-)bug in cbp_mark () when marking a closed port. --- test-suite/tests/r6rs-ports.test | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/test-suite/tests/r6rs-ports.test b/test-suite/tests/r6rs-ports.test index 829258f..df12e5c 100644 --- a/test-suite/tests/r6rs-ports.test +++ b/test-suite/tests/r6rs-ports.test @@ -342,6 +342,7 @@ close!))) (close-port port) + (gc) ; Test for marking a closed port. closed?))) -- 1.5.6.5 --=-=-=--