Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 73093 invoked from network); 23 Mar 2005 17:37:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Mar 2005 17:37:51 -0000 Received: (qmail 44222 invoked by uid 500); 23 Mar 2005 17:37:50 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 44203 invoked by uid 500); 23 Mar 2005 17:37:50 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 44189 invoked by uid 99); 23 Mar 2005 17:37:50 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mtagate1.uk.ibm.com (HELO mtagate1.uk.ibm.com) (195.212.29.134) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 23 Mar 2005 09:37:48 -0800 Received: from d06nrmr1407.portsmouth.uk.ibm.com (d06nrmr1407.portsmouth.uk.ibm.com [9.149.38.185]) by mtagate1.uk.ibm.com (8.12.10/8.12.10) with ESMTP id j2NHbjXJ267086 for ; Wed, 23 Mar 2005 17:37:45 GMT Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1407.portsmouth.uk.ibm.com (8.12.10/NCO/VER6.6) with ESMTP id j2NHbjXo198750 for ; Wed, 23 Mar 2005 17:37:45 GMT Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.12.11/8.12.11) with ESMTP id j2NHbjdQ024400 for ; Wed, 23 Mar 2005 17:37:45 GMT Received: from d06ml062.portsmouth.uk.ibm.com (d06ml062.portsmouth.uk.ibm.com [9.149.38.82]) by d06av02.portsmouth.uk.ibm.com (8.12.11/8.12.11) with ESMTP id j2NHbiAt024395 for ; Wed, 23 Mar 2005 17:37:44 GMT In-Reply-To: <20050323093130.5978.qmail@minotaur.apache.org> Subject: Re: cvs commit: ws-axis/c/build testInitialize.xml To: axis-c-dev@ws.apache.org X-Mailer: Lotus Notes Release 6.0.2CF1 June 9, 2003 Message-ID: From: Adrian Dick Date: Wed, 23 Mar 2005 17:37:43 +0000 X-MIMETrack: Serialize by Router on D06ML062/06/M/IBM(Release 6.53HF247 | January 6, 2005) at 23/03/2005 17:37:44 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, This fix is not suitable, and indeed breaks completely for our automated test systems here. We carry out all our testing as a customer would be expected, having access to just the binary package. Unfortunately, this means the files you're attempting to work with do not exist, causing ANT to fail. There are several issues that come to mind as I look at this particular fix: - Why are we renaming built libraries? Either the test needs to cope with what it's given, or there's a problem in the build and package steps. In this particular case, the test script needs to determine which of the XML parsers it wishes to test with, and use directly: - Why are we working with files in obj/bin? Surely we should be testing against the packaged (obj/package/....) structure, as we provide to our customers? I have added failonerror="false" to the copy task, which prevents ANT from failing. I also needed to replicate a number of new properties you've recently added to build.linux.properties across to the properties files for the other platforms. However, I am still not happy with this being done. I would much prefer that we set a property for the desired xmlparser library name ... perhaps overriding ${xmlParserLibraryName} with the appropriate choice of ${xml4c.xmlParserLibraryName} or ${xerces.xmlParserLibraryName}, where the copy is currently taking place. Regards, Adrian _______________________________________ Adrian Dick (adrian.dick@uk.ibm.com) WebSphere MQ and ESB Development Tel: +44-(0)-1962-819212 Notes: Adrian Dick/UK/IBM@IBMGB sanjaya@apache.org wrote on 23/03/2005 09:31:30: > sanjaya 2005/03/23 01:31:30 > > Modified: c/build testInitialize.xml > Log: > added changes to copy parser specific library to generic parser > library name in ${dir.bin} > > Revision Changes Path > 1.3 +13 -1 ws-axis/c/build/testInitialize.xml > > Index: testInitialize.xml > =================================================================== > RCS file: /home/cvs/ws-axis/c/build/testInitialize.xml,v > retrieving revision 1.2 > retrieving revision 1.3 > diff -u -r1.2 -r1.3 > --- testInitialize.xml 8 Feb 2005 15:24:19 -0000 1.2 > +++ testInitialize.xml 23 Mar 2005 09:31:30 -0000 1.3 > @@ -16,7 +16,19 @@ > > > > - > + > + > + value="${libraryPrefix}${xml4c.xmlParserLibraryName}${librarySuffix}"> > + > + > + value="${libraryPrefix}${xerces.xmlParserLibraryName}${librarySuffix}"> > + > + > + > + tofile="${dir.bin}/${libraryPrefix}${xmlParserLibraryName}${librarySuffix}"/> > + > + > + > > > > > >