Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Thomann2009-09-14 18:42:08 +0000
committerOlivier Thomann2009-09-14 18:42:08 +0000
commita0cac023c95b2d574a68c39b60296bb5db384a18 (patch)
tree1df31d6e0f55fb79f6a2927bb9983e8aebb22f1c /org.eclipse.jdt.core.tests.performance
parente12812c02c749e710a55fe1f28fa9764f0ac6bd5 (diff)
downloadeclipse.jdt.core-a0cac023c95b2d574a68c39b60296bb5db384a18.tar.gz
eclipse.jdt.core-a0cac023c95b2d574a68c39b60296bb5db384a18.tar.xz
eclipse.jdt.core-a0cac023c95b2d574a68c39b60296bb5db384a18.zip
HEAD - Fix for 288148
Diffstat (limited to 'org.eclipse.jdt.core.tests.performance')
-rw-r--r--org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceCompletionTests.java2
-rw-r--r--org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceModelTests.java1
2 files changed, 0 insertions, 3 deletions
diff --git a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceCompletionTests.java b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceCompletionTests.java
index 2013757f2c..60f81725d6 100644
--- a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceCompletionTests.java
+++ b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceCompletionTests.java
@@ -16,7 +16,6 @@ import junit.framework.*;
import org.eclipse.jdt.core.*;
import org.eclipse.jdt.core.tests.model.AbstractJavaModelTests;
-import org.eclipse.test.performance.Performance;
/**
*/
@@ -176,7 +175,6 @@ public class FullSourceWorkspaceCompletionTests extends FullSourceWorkspaceTests
}
public void testPerfCompleteMemberAccess() throws JavaModelException {
tagAsGlobalSummary("Codeassist in expression", true); // put in global fingerprint
- setComment(Performance.EXPLAINS_DEGRADATION_COMMENT, "Regression introduced to fix bug 250454");
complete(
"org.eclipse.jdt.core",
"org.eclipse.jdt.internal.core",
diff --git a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceModelTests.java b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceModelTests.java
index 67faccbc8e..b05f721a0b 100644
--- a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceModelTests.java
+++ b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceModelTests.java
@@ -1123,7 +1123,6 @@ public void testCreateJavaElement() throws CoreException {
public void testInitJDTPlugin() throws JavaModelException, CoreException {
tagAsSummary("JDT/Core plugin initialization", true); // put in fingerprint
- 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...");
// Warm-up
int wmax = WARMUP_COUNT / 5;

Back to the top