Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 316829

Summary: Eclipse auto test: testAnalyze fails in solaris10 with jdk7-b96
Product: [Eclipse Project] JDT Reporter: Tao Zhang <taozhang816>
Component: DebugAssignee: JDT-Debug-Inbox <jdt-debug-inbox>
Status: RESOLVED NOT_ECLIPSE QA Contact:
Severity: normal    
Priority: P3 CC: darin.eclipse, Michael_Rennie
Version: 3.6Keywords: needinfo
Target Milestone: ---   
Hardware: Other   
OS: other   
Whiteboard:

Description Tao Zhang CLA 2010-06-14 17:00:57 EDT
Build Identifier: 

The test fails in solaris-sparc10 with jdk7-b96, but it is pass in jdk6u20, it may be java bug or eclipse bug, need an investigation.

testAnalyze
Should be at least one vm install for the environment

junit.framework.AssertionFailedError: Should be at least one vm install for the environment
at org.eclipse.jdt.debug.tests.core.ExecutionEnvironmentTests.testAnalyze(ExecutionEnvironmentTests.java:53)
at org.eclipse.jdt.debug.tests.AbstractDebugTest.runBare(AbstractDebugTest.java:1712)
at org.eclipse.jdt.debug.tests.DebugSuite$1.run(DebugSuite.java:54)
at java.lang.Thread.run(Thread.java:717)

Reproducible: Always

Steps to Reproduce:
1. see bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=316827
2.
3.
Comment 1 Prakash Rangaraj CLA 2010-07-29 04:50:11 EDT
Moving to JDT
Comment 2 Darin Wright CLA 2010-07-29 09:27:35 EDT
To detect the compatable execution environments the JRE is launched to inspect the "java.version" system property. For example, can you run the following program on the two VMs to see what output is produced?

public static void main(String[] args) {
	System.out.println(System.getProperty("java.version"));
	System.out.println(System.getProperty("sun.boot.class.path"));
	System.out.println(System.getProperty("java.ext.dirs"));
	System.out.println(System.getProperty("java.endorsed.dirs"));$
}
Comment 3 Michael Rennie CLA 2013-12-06 10:07:50 EST
Closing as not_eclipse without more information.