View | Details | Raw Unified | Return to bug 288148
Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceCompletionTests.java (-2 lines)
Lines 16-22 Link Here
16
16
17
import org.eclipse.jdt.core.*;
17
import org.eclipse.jdt.core.*;
18
import org.eclipse.jdt.core.tests.model.AbstractJavaModelTests;
18
import org.eclipse.jdt.core.tests.model.AbstractJavaModelTests;
19
import org.eclipse.test.performance.Performance;
20
19
21
/**
20
/**
22
 */
21
 */
Lines 176-182 Link Here
176
	}
175
	}
177
	public void testPerfCompleteMemberAccess() throws JavaModelException {
176
	public void testPerfCompleteMemberAccess() throws JavaModelException {
178
		tagAsGlobalSummary("Codeassist in expression", true); // put in global fingerprint
177
		tagAsGlobalSummary("Codeassist in expression", true); // put in global fingerprint
179
		setComment(Performance.EXPLAINS_DEGRADATION_COMMENT, "Regression introduced to fix bug 250454");
180
		complete(
178
		complete(
181
				"org.eclipse.jdt.core",
179
				"org.eclipse.jdt.core",
182
				"org.eclipse.jdt.internal.core",
180
				"org.eclipse.jdt.internal.core",
(-)src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceModelTests.java (-1 lines)
Lines 1123-1129 Link Here
1123
1123
1124
public void testInitJDTPlugin() throws JavaModelException, CoreException {
1124
public void testInitJDTPlugin() throws JavaModelException, CoreException {
1125
	tagAsSummary("JDT/Core plugin initialization", true); // put in fingerprint
1125
	tagAsSummary("JDT/Core plugin initialization", true); // put in fingerprint
1126
	setComment(Performance.EXPLAINS_DEGRADATION_COMMENT, "Added clean-up of internal thread local which imply additional garbage collect during the restart. It concerns only the performance test itself and has no impact in standard Eclipse usage...");
1127
1126
1128
	// Warm-up
1127
	// Warm-up
1129
	int wmax = WARMUP_COUNT / 5;
1128
	int wmax = WARMUP_COUNT / 5;

Return to bug 288148