This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Guile".
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=71cc8d96ee0917474c052fd484cad199be1311b2 The branch, stable-2.0 has been updated via 71cc8d96ee0917474c052fd484cad199be1311b2 (commit) from 4f6e8ba7bcfd3daeb1179bf0be09d7953bf2458f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 71cc8d96ee0917474c052fd484cad199be1311b2 Author: Andy Wingo <[email protected]> Date: Wed Feb 22 20:08:44 2012 +0100 add test for recent quick fix * test-suite/tests/web-uri.test ("string->uri"): Add test for string->uri with hosts beginning in digits. ----------------------------------------------------------------------- Summary of changes: test-suite/tests/web-uri.test | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/test-suite/tests/web-uri.test b/test-suite/tests/web-uri.test index 9118eea..940fb31 100644 --- a/test-suite/tests/web-uri.test +++ b/test-suite/tests/web-uri.test @@ -1,6 +1,6 @@ ;;;; web-uri.test --- URI library -*- mode: scheme; coding: utf-8; -*- ;;;; -;;;; Copyright (C) 2010, 2011 Free Software Foundation, Inc. +;;;; Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public @@ -143,6 +143,10 @@ (uri=? (string->uri "http://foo:/") #:scheme 'http #:host "foo" #:path "/")) + (pass-if "http://2012.jsconf.us/" + (uri=? (string->uri "http://2012.jsconf.us/") + #:scheme 'http #:host "2012.jsconf.us" #:path "/")) + (pass-if "http://foo:not-a-port" (not (string->uri "http://foo:not-a-port"))) hooks/post-receive -- GNU Guile
