Browse Source

-comment WLrmic tests

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@594016 13f79535-47bb-0310-9956-ffa450edef68
master
Kevin Jackson 17 years ago
parent
commit
4a73a85b71
2 changed files with 6 additions and 5 deletions
  1. +3
    -2
      src/etc/testcases/taskdefs/rmic/rmic.xml
  2. +3
    -3
      src/tests/junit/org/apache/tools/ant/taskdefs/RmicAdvancedTest.java

+ 3
- 2
src/etc/testcases/taskdefs/rmic/rmic.xml View File

@@ -167,7 +167,8 @@
/>
<assertBaseCompiled/>
</target>

<!-- weblogic.rmic doesn't work without a global CLASSPATH
<target name="testWlrmic" if="wlrmic.present" depends="init">
<base-rmic
compiler="weblogic"
@@ -181,7 +182,7 @@
<compilerarg value="-J-mx256m" />
</base-rmic>
</target>
-->
<target name="testForking" if="rmic.present" depends="init">
<base-rmic
compiler="forking"


+ 3
- 3
src/tests/junit/org/apache/tools/ant/taskdefs/RmicAdvancedTest.java View File

@@ -85,18 +85,18 @@ public class RmicAdvancedTest extends BuildFileTest {
public void testKaffe() throws Exception {
executeTarget("testKaffe");
}
// WLrmic tests don't work
/**
* test weblogic
*/
public void testWlrmic() throws Exception {
public void XtestWlrmic() throws Exception {
executeTarget("testWlrmic");
}

/**
* test weblogic's stripping of -J args
*/
public void testWlrmicJArg() throws Exception {
public void XtestWlrmicJArg() throws Exception {
executeTarget("testWlrmicJArg");
}



Loading…
Cancel
Save