Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-dev] Fix for 219671 : core.test - enable LRG test.core target using test.class variable

Everyone,
    The following eclipslink.core.test build script change has been checked in.
 
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=219671
 
    Details:
 
Fix typo on trunk>ant test.core target so we can run the LRG from the trunk or inside foundation/eclipselink.core.test
 
Note: You can override the new test.class variable in eclipselink.core.test/test.properties in your <user-dir>/build.properties
 

after
    <target name="test">
        <antcall target="run.test" inheritRefs="true">
            <param name="TEST_CLASS" value="{test.class}"/>
        </antcall>
    </target>

before
    <target name="test">
        <antcall target="run.test" inheritRefs="true">
            <param name="TEST_CLASS" value="${test.class}"/>
        </antcall>
    </target>
 
Tests:
 
    eclipselink.core.test    pass
   
 
    Code Reviewed by
        Tom
 
    thank you
    /michael
 

Back to the top