[
https://issues.jboss.org/browse/JBIDE-24886?page=com.atlassian.jira.plugi...
]
Nick Boldt commented on JBIDE-24886:
------------------------------------
Seems that running the JDK5 and JDK6 tests on OSX using these:
{code}
-Djbosstools.test.jre.8=/qa/tools/opt/osx/jdk1.8.0_last
-Djbosstools.test.jre.7=/qa/tools/opt/osx/jdk1.7.0_last
-Djbosstools.test.jre.6=/qa/tools/opt/osx/jdk1.8.0_last
-Djbosstools.test.jre.5=/qa/tools/opt/osx/jdk1.8.0_last {code}
... results in 4153 successful tests (with 2 skipped), and a green ball:
https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/server.i...
So maybe we don't actually need to remove/deprecate the tests, if they run w/ JDK8?
deprecate JDK5-dependent tests or enable a way to skip them on OSX
(as no JDK5 is available there)
--------------------------------------------------------------------------------------------------
Key: JBIDE-24886
URL:
https://issues.jboss.org/browse/JBIDE-24886
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: server
Affects Versions: 4.5.1.AM1
Reporter: Nick Boldt
Assignee: Rob Stryker
Fix For: 4.5.1.AM2
In searching for */JRE_5_HOME\|jre.5\|jre5\|jdk5\|jdk.5/*, I've only found TWO files
which make use of the JDK5/JRE5 constants, so this might be fairly simple.
{code:title=as/plugins/org.jboss.ide.eclipse.as.wtp.core/src/org/jboss/ide/eclipse/as/core/util/IJBossRuntimeResourceConstants.java}
63: public static final String AOP_JDK5_DEPLOYER = "jboss-aop-jdk50.deployer";
//$NON-NLS-1$
65: public static final String JBOSS_AOP_JDK5_JAR = "jboss-aop-jdk50.jar";
//$NON-NLS-1$
93: public static final String JBOSS_ASPECT_LIBRARY_JDK5_0 =
"jboss-aspect-library-jdk50.jar"; //$NON-NLS-1$
{code}
{code:title=as/tests/org.jboss.tools.as.test.core/src/org/jboss/tools/as/test/core/TestConstants.java}
45: public static final String JRE_5_HOME =
System.getProperty("jbosstools.test.jre.5",
"C:\\apps\\java\\jre5.0\\");
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)