Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [wtp-releng] JSF : New Junits are not running in the recent builds..


I _think_ it might at least partially be related to the fact that you jar up those plugins.


    <plugin
                id="org.eclipse.jst.jsf.context.symbol.tests"
         download-size="0"
         install-size="0"
         version="0.0.0"
         unpack="false"/>

should be

    <plugin
                id="org.eclipse.jst.jsf.context.symbol.tests"
         download-size="0"
         install-size="0"
         version="0.0.0"/>

(Notice I didn't just change to true ... that used to not work .... like a year ago ... and I haven't tried it since!)


We have some quirky code that still uses the plain file system to find the right bundles to test (and find test.xml) so they
have to be left unpacked.

I think you can leave packed the org.eclipse.jst.jsf.test.util
bundle as it itself is not really a test plugin (has no test.xml to find).

HTH






raghunathan.srinivasan@xxxxxxxxxx
Sent by: wtp-releng-bounces@xxxxxxxxxxx

06/05/2007 11:47 AM

Please respond to
Webtools releng discussion list <wtp-releng@xxxxxxxxxxx>

To
wtp-releng@xxxxxxxxxxx
cc
Subject
[wtp-releng] JSF : New Junits are not running in the recent builds..





Hi,

We added new junit suites in the RC0-RC1 timeframe. In the last few builds, the test source is being compiled but not invoked. I can't see any errors related to these plugins in the log files. Can you help debug this?
-Raghu

>From test.xml:

<antcall target="runtests">
                                                  <param name="testPlugin" value="${org.eclipse.jst.jsf.context.symbol.tests}" />
                                                  <param name="report" value="org.eclipse.jst.jsf.context.symbol.tests" />
                                 </antcall>
                                 <antcall target="runtests">
                                                  <param name="testPlugin" value="${org.eclipse.jst.jsf.designtime.tests}" />
                                                  <param name="report" value="org.eclipse.jst.jsf.designtime.tests" />
                                 </antcall>

_______________________________________________
wtp-releng mailing list
wtp-releng@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/wtp-releng


Back to the top