diff options
author | Elliott Hughes <enh@google.com> | 2010-02-01 15:38:16 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-02-01 15:38:16 -0800 |
commit | c7f73a8023d1b3eab8b45df9edb24790b0b23046 (patch) | |
tree | d9e7e3f5c2c6a8fb1b6b21a419337369581ad64a /xml/src/test/java | |
parent | f6d9e0d413b29fb0d1c8eadaafd4500b0adef964 (diff) | |
download | libcore-c7f73a8023d1b3eab8b45df9edb24790b0b23046.zip libcore-c7f73a8023d1b3eab8b45df9edb24790b0b23046.tar.gz libcore-c7f73a8023d1b3eab8b45df9edb24790b0b23046.tar.bz2 |
Remove @KnownFailure from tests that now pass.
One of these tests still doesn't pass, but for a different reason know the
known failure is fixed, so I've removed that test's annotation too:
16) test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandlerLjava_lang_String(tests.api.javax.xml.parsers.SAXParserTest)junit.framework.AssertionFailedError
at tests.api.javax.xml.parsers.SAXParserTest.test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandlerLjava_lang_String(SAXParserTest.java:680)
at java.lang.reflect.Method.invokeNative(Native Method)
at com.google.coretests.CoreTestRunnable.runInternally(CoreTestRunnable.java:129)
at com.google.coretests.CoreTestRunnable.run(CoreTestRunnable.java:92)
at com.google.coretests.CoreTestResult.runProtected(CoreTestResult.java:148)
at com.google.coretests.CoreTestSuite.run(CoreTestSuite.java:278)
at com.google.coretests.CoreTestRunner.doRun(CoreTestRunner.java:141)
at com.google.coretests.CoreTestRunner.start(CoreTestRunner.java:317)
at com.google.coretests.CoreTestRunner.main(CoreTestRunner.java:110)
at com.google.coretests.Main.main(Main.java:45)
at dalvik.system.NativeStart.main(Native Method)
Diffstat (limited to 'xml/src/test/java')
-rw-r--r-- | xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java b/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java index 2b8bb5c..ca7cf71 100644 --- a/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java +++ b/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java @@ -347,8 +347,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.io.File.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_io_FileLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -456,8 +454,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {org.xml.sax.InputSource.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLorg_xml_sax_InputSourceLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -623,8 +619,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.io.InputStream.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -675,8 +669,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.io.InputStream.class, org.xml.sax.helpers.DefaultHandler.class, java.lang.String.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandlerLjava_lang_String() { for(int i = 0; i < list_wf.length; i++) { try { @@ -952,8 +944,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.lang.String.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_lang_StringLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -1174,4 +1164,3 @@ public class SAXParserTest extends TestCase { } } - |