Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-releng-dev] Setup question

Hello 
 
I setup a build environment for our plug-ins based on the releng
plug-in. I checkout the org.eclipse.ve.releng plug-in and modified it to
build our own feature.
 
All works fine (building, testing, publishing) only the console output
of the testing wouldn't be created. I searched but I doesn't found where
it will be created.
 
I must comment out in
org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/t
est.xml the last line because it doesn't found the consolelog dir
 
<target name="runtests-local">
            ..........
 
            <!--run the tests-->
 
            <exec dir="${executionDir}" executable="${testExecutable}">
                        <arg line="${args}" />
            </exec>
 
            <mkdir dir="${testResults}" />
            <mkdir dir="${testResults}/consolelogs" />
 
            <copy todir="${testResults}">
                        <fileset dir="${executionDir}/results" />
            </copy>
            <!--<copy todir="${testResults}/consolelogs"
file="${executionDir}/${consolelog}" />-->
</target>
 
Where would be created the console log that I can display it in the
download site?
 
Thanks for any help.
 
Greets allon


Back to the top