The build.xml invoked the deprecated .enum. test suite but not the new .enums. test suite. Added .enums. invocation on top of .enum.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@178764 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
015b77e3ea
commit
a1d8a35b24
|
@ -178,6 +178,7 @@ limitations under the License.
|
||||||
<target name="test.enum" depends="compile.tests">
|
<target name="test.enum" depends="compile.tests">
|
||||||
<echo message="Running enum package tests ..."/>
|
<echo message="Running enum package tests ..."/>
|
||||||
<java classname="${test.runner}" fork="${test.fork}" failonerror="${test.failonerror}">
|
<java classname="${test.runner}" fork="${test.fork}" failonerror="${test.failonerror}">
|
||||||
|
<arg value="org.apache.commons.lang.enums.EnumTestSuite"/>
|
||||||
<arg value="org.apache.commons.lang.enum.EnumTestSuite"/>
|
<arg value="org.apache.commons.lang.enum.EnumTestSuite"/>
|
||||||
<classpath refid="test.classpath"/>
|
<classpath refid="test.classpath"/>
|
||||||
</java>
|
</java>
|
||||||
|
|
Loading…
Reference in New Issue