Return-Path: Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: (qmail 84583 invoked from network); 29 Jun 2010 09:02:56 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 29 Jun 2010 09:02:56 -0000 Received: (qmail 85361 invoked by uid 500); 29 Jun 2010 09:02:56 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 85265 invoked by uid 500); 29 Jun 2010 09:02:54 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 85258 invoked by uid 99); 29 Jun 2010 09:02:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jun 2010 09:02:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jun 2010 09:02:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1C5E6238888F; Tue, 29 Jun 2010 09:01:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r958886 - /subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c Date: Tue, 29 Jun 2010 09:01:58 -0000 To: commits@subversion.apache.org From: philip@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100629090158.1C5E6238888F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: philip Date: Tue Jun 29 09:01:57 2010 New Revision: 958886 URL: http://svn.apache.org/viewvc?rev=958886&view=rev Log: * subversion/tests/libsvn_subr/dirent_uri-test.c (test_file_url_from_dirent): Add missing commas to non-Windows code. Modified: subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c Modified: subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c?rev=958886&r1=958885&r2=958886&view=diff ============================================================================== --- subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c (original) +++ subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c Tue Jun 29 09:01:57 2010 @@ -2765,8 +2765,8 @@ test_file_url_from_dirent(apr_pool_t *po /*{ "//server/share", "file://server/share" }, { "//server/share/file", "file://server/share/file" },*/ #else - { "/a/b", "file:///a/b" } - { "/a", "file:///a" } + { "/a/b", "file:///a/b" }, + { "/a", "file:///a" }, { "/", "file:///" }, { "/File#$", "file:///File%23$" }, #endif