Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorM N Palat2013-10-16 10:24:51 +0000
committerM N Palat2013-10-16 10:24:51 +0000
commita38d26ea4f2f03195744026af44f070900d21cea (patch)
treea1780386c6034d281d97833d2690686c5bbdb5e1
parent43bf242c384a6b4ad5daf26c5b4617ec68564235 (diff)
downloadeclipse.jdt.core-a38d26ea4f2f03195744026af44f070900d21cea.tar.gz
eclipse.jdt.core-a38d26ea4f2f03195744026af44f070900d21cea.tar.xz
eclipse.jdt.core-a38d26ea4f2f03195744026af44f070900d21cea.zip
Temporarily disabling tests listed in Bug 417659 [dom][ast][1.8] test
failures - ast structure - when debug tracing is on
-rw-r--r--org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter18Test.java4
-rw-r--r--org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeAnnotationsConverterTest.java6
-rw-r--r--org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/describing/ASTRewritingMethodDeclTest.java4
3 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter18Test.java b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter18Test.java
index bdf63b725d..7af45d87c4 100644
--- a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter18Test.java
+++ b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter18Test.java
@@ -305,7 +305,7 @@ public class ASTConverter18Test extends ConverterTestSetup {
*
* @throws JavaModelException
*/
- public void test0004() throws JavaModelException {
+ public void _test0004() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter18/src/test0004/X.java",
true/* resolve */);
String contents = "package test0004;"
@@ -456,7 +456,7 @@ public class ASTConverter18Test extends ConverterTestSetup {
*
* @throws JavaModelException
*/
- public void test0006() throws JavaModelException {
+ public void _test0006() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter18/src/test0006/X.java",
true);
String contents = "package test0006;"
diff --git a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeAnnotationsConverterTest.java b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeAnnotationsConverterTest.java
index c7efeb04bd..f8015cc5d4 100644
--- a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeAnnotationsConverterTest.java
+++ b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeAnnotationsConverterTest.java
@@ -110,7 +110,7 @@ public class TypeAnnotationsConverterTest extends ConverterTestSetup {
assertASTNodeEquals(expectedOutput, node);
}
// Test ParameterizedQualifiedReference
- public void test0003() throws JavaModelException {
+ public void _test0003() throws JavaModelException {
String contents =
"public class X<T> {\n" +
" class Y<R> {\n" +
@@ -139,7 +139,7 @@ public class TypeAnnotationsConverterTest extends ConverterTestSetup {
assertASTNodeEquals(expectedOutput, node);
}
// Test ParameterizedQualifiedReference with arrays.
- public void test0004() throws JavaModelException {
+ public void _test0004() throws JavaModelException {
String contents =
"public class X<T> {\n" +
" class Y<R> {\n" +
@@ -168,7 +168,7 @@ public class TypeAnnotationsConverterTest extends ConverterTestSetup {
assertASTNodeEquals(expectedOutput, node);
}
// Test ParameterizedQualifiedReference with arrays.
- public void test0005() throws JavaModelException {
+ public void _test0005() throws JavaModelException {
String contents =
"public class X<T> {\n" +
" class Y<R> {\n" +
diff --git a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/describing/ASTRewritingMethodDeclTest.java b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/describing/ASTRewritingMethodDeclTest.java
index 2d7055ffad..89ed05d5f0 100644
--- a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/describing/ASTRewritingMethodDeclTest.java
+++ b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/describing/ASTRewritingMethodDeclTest.java
@@ -344,7 +344,7 @@ public class ASTRewritingMethodDeclTest extends ASTRewritingTest {
- public void testMethodReturnTypeChanges_only_2() throws Exception {
+ public void _testMethodReturnTypeChanges_only_2() throws Exception {
IPackageFragment pack1= this.sourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
@@ -447,7 +447,7 @@ public class ASTRewritingMethodDeclTest extends ASTRewritingTest {
}
- public void testMethodReturnTypeChanges2_only_2() throws Exception {
+ public void _testMethodReturnTypeChanges2_only_2() throws Exception {
IPackageFragment pack1= this.sourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");

Back to the top