Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorssankaran2013-10-17 11:27:58 +0000
committerssankaran2013-10-17 11:27:58 +0000
commitd18a6738cbd421cd821f056cabd3de07c564f224 (patch)
tree91e937e45d8763227c6d94113d15cd6fde4a5a0b
parentbc9ce3968f8f3e0eb426deb1d35cab387ea00774 (diff)
downloadeclipse.jdt.core-d18a6738cbd421cd821f056cabd3de07c564f224.tar.gz
eclipse.jdt.core-d18a6738cbd421cd821f056cabd3de07c564f224.tar.xz
eclipse.jdt.core-d18a6738cbd421cd821f056cabd3de07c564f224.zip
[1.8] Disabling failing tests due to Bug 417659
-rw-r--r--org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeBindingTests308.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeBindingTests308.java b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeBindingTests308.java
index 74cd94dd7d..d84b7083db 100644
--- a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeBindingTests308.java
+++ b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/TypeBindingTests308.java
@@ -641,7 +641,7 @@ public class TypeBindingTests308 extends ConverterTestSetup {
type = wildcard.getBound();
verifyAnnotationOnType(type, new String[]{"@Marker()"});
}
- public void test016() throws Exception {
+ public void _test016() throws Exception {
String contents =
"public class X<E> {\n" +
" class Y {\n" +
@@ -698,7 +698,7 @@ public class TypeBindingTests308 extends ConverterTestSetup {
InstanceofExpression expression = (InstanceofExpression) operand.getExpression();
verifyAnnotationOnType(expression.getRightOperand(), new String[]{"@Marker()"});
}
- public void test018() throws Exception {
+ public void _test018() throws Exception {
String contents =
"interface I {\n" +
" void foo(Y<String>.Z z, int x);\n" +
@@ -782,7 +782,7 @@ public class TypeBindingTests308 extends ConverterTestSetup {
binding = binding.getComponentType();
verifyAnnotationsOnBinding(binding, new String[]{"@Marker2()"});
}
- public void test020() throws Exception {
+ public void _test020() throws Exception {
String contents =
"public class X {\n" +
" public static void main(String [] args) {\n" +

Back to the top