Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSzymon Brandys2009-03-18 08:51:46 +0000
committerSzymon Brandys2009-03-18 08:51:46 +0000
commit839f8d12daf96bd5eaee9b0a55738dc4a48c931c (patch)
treef74512594db46cafd000501dcd99912c5a4d78d8 /tests/org.eclipse.compare.tests
parent7c3249df449182ebb6af893f2b2ded0c8b7a79ad (diff)
downloadeclipse.platform.team-839f8d12daf96bd5eaee9b0a55738dc4a48c931c.tar.gz
eclipse.platform.team-839f8d12daf96bd5eaee9b0a55738dc4a48c931c.tar.xz
eclipse.platform.team-839f8d12daf96bd5eaee9b0a55738dc4a48c931c.zip
The invalid justification for the test disabled
Diffstat (limited to 'tests/org.eclipse.compare.tests')
-rw-r--r--tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/performance/RangeDifferencerTest.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/performance/RangeDifferencerTest.java b/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/performance/RangeDifferencerTest.java
index 31157b7d5..10abd537f 100644
--- a/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/performance/RangeDifferencerTest.java
+++ b/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/performance/RangeDifferencerTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
+ * Copyright (c) 2005, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -18,13 +18,12 @@ import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jface.text.Document;
import org.eclipse.jface.text.IDocument;
import org.eclipse.test.performance.Dimension;
-import org.eclipse.test.performance.Performance;
import org.eclipse.test.performance.PerformanceTestCase;
-
public class RangeDifferencerTest extends PerformanceTestCase {
- static private final String EXPLANATION = "Performance decrease caused by changes in the compare framework, see bug 210688";
+
+ // static private final String EXPLANATION = "Performance decrease caused by changes in the compare framework, see bug 210688";
public RangeDifferencerTest(String name) {
super(name);
@@ -63,7 +62,7 @@ public class RangeDifferencerTest extends PerformanceTestCase {
public void testLargeDocument() {
tagAsGlobalSummary("3-way compare, 5000 lines", Dimension.ELAPSED_PROCESS); //$NON-NLS-1$
- setComment(Performance.EXPLAINS_DEGRADATION_COMMENT, EXPLANATION);
+ // setComment(Performance.EXPLAINS_DEGRADATION_COMMENT, EXPLANATION);
ITokenComparator ancestor= new DocLineComparator(createDocument(0), null, false);
ITokenComparator left= new DocLineComparator(createDocument(1), null, false);

Back to the top