Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 72938 invoked from network); 10 Feb 2006 00:15:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Feb 2006 00:15:48 -0000 Received: (qmail 74503 invoked by uid 500); 10 Feb 2006 00:15:45 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 74146 invoked by uid 500); 10 Feb 2006 00:15:43 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 74135 invoked by uid 99); 10 Feb 2006 00:15:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Feb 2006 16:15:43 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [137.65.81.172] (HELO lucius.provo.novell.com) (137.65.81.172) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Feb 2006 16:15:42 -0800 Received: from INET-PRV1-MTA by lucius.provo.novell.com with Novell_GroupWise; Thu, 09 Feb 2006 17:15:21 -0700 Message-Id: <43EB77D4.6720.00AC.0@novell.com> X-Mailer: Novell GroupWise Internet Agent 7.0 Date: Thu, 09 Feb 2006 17:14:58 -0700 From: "Brad Nicholes" To: , Subject: Re: svn commit: r376473 - /apr/apr/trunk/test/testnames.c References: <20060209225816.36629.qmail@minotaur.apache.org> In-Reply-To: <20060209225816.36629.qmail@minotaur.apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 500/1000/N >>> On 2/9/2006 at 3:58:15 pm, in message <20060209225816.36629.qmail@minotaur.apache.org>, wrowe@apache.org wrote: > Author: wrowe > Date: Thu Feb 9 14:58:14 2006 > New Revision: 376473 > > URL: http://svn.apache.org/viewcvs?rev=376473&view=rev > Log: > > Rules out netware from this scenario per Brad. > > Modified: > apr/apr/trunk/test/testnames.c > > Modified: apr/apr/trunk/test/testnames.c > URL: > http://svn.apache.org/viewcvs/apr/apr/trunk/test/testnames.c?rev=376473&r1=37 > 6472&r2=376473&view=diff > ============================================================================ > == > --- apr/apr/trunk/test/testnames.c (original) > +++ apr/apr/trunk/test/testnames.c Thu Feb 9 14:58:14 2006 > @@ -193,7 +193,7 @@ > > rv = apr_filepath_root(&root, &path, APR_FILEPATH_TRUENAME, p); > > -#if defined(WIN32) || defined(NETWARE) || defined(OS2) > +#if defined(WIN32) || defined(OS2) > ABTS_INT_EQUAL(tc, APR_EINCOMPLETE, rv); > ABTS_STR_EQUAL(tc, "//", root); > #els This doesn't quite fix it either. For NetWare the returns are ABTS_INT_EQUAL(tc, APR_EINCOMPLETE, rv); ABTS_STR_EQUAL(tc, "/", root); Brad