From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Newsgroups: gmane.lisp.guile.devel Subject: Re: guildhall status Date: Fri, 15 Jul 2011 15:21:40 -0400 Message-ID: <20110715192140.1FNJN.87693.root@cdptpa-web12-z01> References: <20110715191006.M33OZ.87631.root@cdptpa-web12-z01> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_928205_3485914.1310757700147" X-Trace: dough.gmane.org 1310757745 29223 80.91.229.12 (15 Jul 2011 19:22:25 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 15 Jul 2011 19:22:25 +0000 (UTC) To: guile-devel , Andy Wingo , dsmich@roadrunner.com Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri Jul 15 21:22:21 2011 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Qhnxt-0006mc-AY for guile-devel@m.gmane.org; Fri, 15 Jul 2011 21:22:21 +0200 Original-Received: from localhost ([::1]:51227 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qhnxs-000404-1U for guile-devel@m.gmane.org; Fri, 15 Jul 2011 15:22:20 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:42733) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QhnxK-0003w1-F6 for guile-devel@gnu.org; Fri, 15 Jul 2011 15:21:50 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QhnxF-0000Tw-Ui for guile-devel@gnu.org; Fri, 15 Jul 2011 15:21:46 -0400 Original-Received: from cdptpa-omtalb.mail.rr.com ([75.180.132.120]:60100) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QhnxF-0000To-Cd for guile-devel@gnu.org; Fri, 15 Jul 2011 15:21:41 -0400 Authentication-Results: cdptpa-omtalb.mail.rr.com smtp.user=dsmich@roadrunner.com; auth=pass (LOGIN) X-Authority-Analysis: v=1.1 cv=aeMH4JcVOnVr0LmJAzqEvfnmJyuaZufWdlng4HTRGCk= c=1 sm=0 a=zTVDa7HKqxcA:10 a=doupyKFmAAAA:8 a=sejoJk3K-07NcjhIpbcA:9 a=QEXdDO2ut3YA:10 a=0vUscowIxtUA:10 a=mDV3o1hIAAAA:8 a=SzfPx6zjz-p8p_Ea8SkA:9 a=1PCrgu7eLcn_iKKKKHQA:7 a=O8Q5qNTgwofbtOQ0FzitMg==:117 X-Cloudmark-Score: 0 Original-Received: from [10.127.132.103] ([10.127.132.103:63205] helo=cdptpa-web12-z01) by cdptpa-oedge02.mail.rr.com (envelope-from ) (ecelerity 2.2.3.46 r()) with ESMTPA id FB/C4-03893-443902E4; Fri, 15 Jul 2011 19:21:40 +0000 In-Reply-To: <20110715191006.M33OZ.87631.root@cdptpa-web12-z01> X-Priority: 3 (Normal) Sensitivity: Normal X-Originating-IP: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 75.180.132.120 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:12655 Archived-At: ------=_Part_928205_3485914.1310757700147 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit ---- dsmich@roadrunner.com wrote: > The test passes with the included git diff. Seems request-host returns a pair instead of a string, so just use the car. > Bah. Looks like I hozed attaching it. Another try. -Dale ------=_Part_928205_3485914.1310757700147 Content-Type: text/x-patch; name=web-client.diff Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=web-client.diff diff --git a/test-suite/tests/web-request.test b/test-suite/tests/web-request.test index b1182d2..157075a 100644 --- a/test-suite/tests/web-request.test +++ b/test-suite/tests/web-request.test @@ -48,7 +48,7 @@ Accept-Language: en-gb, en;q=0.9\r (request? r))) (pass-if (equal? - (request-host (build-request (string->uri "http://www.gnu.org/"))) + (car (request-host (build-request (string->uri "http://www.gnu.org/")))) "www.gnu.org")) (pass-if (equal? (request-method r) 'GET)) ------=_Part_928205_3485914.1310757700147--