From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sunjoong Lee Newsgroups: gmane.lisp.guile.user Subject: Re: Problem with guile on Dragora Date: Sat, 5 May 2012 04:46:45 +0900 Message-ID: References: <20120502003631.58d9d08a@rafaela> <20120502015105.0a8b8d6f@rafaela> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=f46d043bde66605ba404bf3b2f3a X-Trace: dough.gmane.org 1336160839 968 80.91.229.3 (4 May 2012 19:47:19 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 4 May 2012 19:47:19 +0000 (UTC) Cc: guile-user@gnu.org To: =?UTF-8?Q?Ludovic_Court=C3=A8s?= Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri May 04 21:47:17 2012 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SQOTE-0005mL-7x for guile-user@m.gmane.org; Fri, 04 May 2012 21:47:16 +0200 Original-Received: from localhost ([::1]:35483 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SQOTD-0000Uz-If for guile-user@m.gmane.org; Fri, 04 May 2012 15:47:15 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:47332) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SQOT8-0000Ur-OE for guile-user@gnu.org; Fri, 04 May 2012 15:47:12 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SQOT6-00084k-OY for guile-user@gnu.org; Fri, 04 May 2012 15:47:10 -0400 Original-Received: from mail-wi0-f169.google.com ([209.85.212.169]:54859) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SQOT6-00084X-FY; Fri, 04 May 2012 15:47:08 -0400 Original-Received: by wibhm17 with SMTP id hm17so1442736wib.0 for ; Fri, 04 May 2012 12:47:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=tZv1e2VG4/DBt3eKhU7SvXQ5YFzDEcybImd9CYVZBHA=; b=Zy8S2m3mZZ7YvUv+cSuHj0bHSFFFKIsjp50Sn9fNQqVfolNaDalAdWo4lxJhp8pc4/ D/dRVtFtTbKL9qRoidkLFRew/fxvkJ7bDtVC1PwlM8blxwA/Fy1QHy25/iZAR5J9dtqY Niw8Uf2QqnqxjiABirwK3B1ytZIhC0TjO9Wyr0o/1xoWp/uiXTgQT2M3Tox9XBO5ctRB IvxAkSnaEgwpglK9n/EErguKtBsm1KZ8t1QUBcpEErMSmrgjjchwl+BWWcq6aZWVZjDO a+X5InIuoDl1oP51AnSWEhW58wlpFIrfqDAMhDv/9ZSGRDy7Hr/2LmJW5CoxwIEmJhV7 SRFw== Original-Received: by 10.180.85.69 with SMTP id f5mr15696771wiz.18.1336160825662; Fri, 04 May 2012 12:47:05 -0700 (PDT) Original-Received: by 10.223.78.193 with HTTP; Fri, 4 May 2012 12:46:45 -0700 (PDT) In-Reply-To: <20120502015105.0a8b8d6f@rafaela> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.212.169 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:9449 Archived-At: --f46d043bde66605ba404bf3b2f3a Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi, Germ=C3=A1n; 2012/5/4 Ludovic Court=C3=A8s > Could you apply this patch and confirm? Alternatively, you can try a > tarball from . > When checking the new patched version of Guile, there is "check-guile" script in root of Guile source directory. After "./configure" and "make", you can execute this script "./check-guile" and it will display many information like this: ..... ..... Running vlist.test Running weaks.test Running web-http.test Running web-request.test Running web-response.test Running web-uri.test Totals for this test run: passes: 34414 failures: 2 unexpected passes: 0 expected failures: 30 unresolved test cases: 578 untested test cases: 1 unsupported test cases: 9 errors: 0 This script write a log file, check-guile.log. In above case, there is 2 failures. you can grep like this: $ grep ^FAIL check-guile.log FAIL: gc.test: gc: Lexical vars are collectable FAIL: threads.test: mutex-ownership: mutex with owner not retained (bug #27450) If you find errors, use ^ERROR instead of ^FAIL. --f46d043bde66605ba404bf3b2f3a Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi,=C2=A0Germ=C3=A1n;

2012/5/4=C2=A0Ludov= ic Court=C3=A8s <ludo@gnu.org>
Could you apply this patch and confirm?= =C2=A0Alternatively, you can try a

When checking the new patched versio= n of Guile, there is "check-guile" script in root of Guile source= directory. After "./configure" and "make", you can exe= cute this script "./check-guile" and it will display many informa= tion like this:
=C2=A0 .....
=C2=A0 .....
=C2=A0 Running vlis= t.test
=C2=A0 Running weaks.test
=C2=A0 Running web-htt= p.test
=C2=A0 Running web-request.test
=C2=A0 Running w= eb-response.test
=C2=A0 Running web-uri.test

=C2=A0 Totals for this test run:
=C2=A0 passe= s: =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 34414
= =C2=A0 failures: =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 2
=C2=A0 unexpected passes: =C2=A0 =C2=A0 =C2=A00
=C2=A0 expecte= d failures: =C2=A0 =C2=A0 =C2=A030
=C2=A0 unresolved test cases: = =C2=A0578
=C2=A0 untested test cases: =C2=A0 =C2=A01
=C2=A0 unsupporte= d test cases: 9
=C2=A0 errors: =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0= =C2=A0 =C2=A0 =C2=A0 0

This script write a = log file,=C2=A0check-guile.log. In above case, there is 2 failures. you can= grep like this:
=C2=A0 $=C2=A0grep ^FAIL check-guile.log=C2=A0
=C2=A0 FAIL: = gc.test: gc: Lexical vars are collectable
=C2=A0 FAIL: threads.te= st: mutex-ownership: mutex with owner not retained (bug #27450)
<= br>
If you find errors, use=C2=A0^ERROR instead of=C2=A0^FAIL.


--f46d043bde66605ba404bf3b2f3a--