Bug 31693

Summary: Calling build of testsuite and WebDAV client
Product: Slide Reporter: Stefan Fromm <sf21>
Component: Transaction ManagerAssignee: Slide Developer List <slide-dev>
Status: RESOLVED FIXED    
Severity: minor    
Priority: P3    
Version: 2.1   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Attachments: The additional parameters

Description Stefan Fromm 2004-10-13 09:55:34 UTC
When the build of the testsuite is started from the main /build.xml there must 
be given a parameter inheritAll="false" in each call:

Please replace /project/target[@name=testsuite-dist] with the following XML 
fragment:

    <target name="testsuite-dist" depends="testsuite-dist-prepare">
        <ant dir="webdavclient" inheritAll="false"/>
        <ant dir="testsuite" inheritAll="false"/>
        <copy todir="${testsuite.dist}">
            <fileset dir="${basedir}/testsuite" excludes="**/dist/**,**/CVS/**,
**/testCasesResults.xml,**/testErrorsReport.txt"/>
        </copy>
    </target>
Comment 1 Stefan Fromm 2004-10-13 10:26:21 UTC
Created attachment 13067 [details]
The additional parameters