Bug 31693 - Calling build of testsuite and WebDAV client
Summary: Calling build of testsuite and WebDAV client
Status: RESOLVED FIXED
Alias: None
Product: Slide
Classification: Unclassified
Component: Transaction Manager (show other bugs)
Version: 2.1
Hardware: PC Windows XP
: P3 minor (vote)
Target Milestone: ---
Assignee: Slide Developer List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-13 09:55 UTC by Stefan Fromm
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments
The additional parameters (393 bytes, patch)
2004-10-13 10:26 UTC, Stefan Fromm
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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