summaryrefslogtreecommitdiffstats
path: root/xml/src/test/java
diff options
context:
space:
mode:
authorJorg Pleumann <>2009-03-30 02:12:23 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-30 02:12:23 -0700
commit2feafbf54d9942afd925ba9b40972034df52aa60 (patch)
treefd322ee0f64e9706b21f7266147d9a8f73a3d411 /xml/src/test/java
parenta566c3ecc8c821172e27d89444dd7cadfbdc369b (diff)
downloadlibcore-2feafbf54d9942afd925ba9b40972034df52aa60.zip
libcore-2feafbf54d9942afd925ba9b40972034df52aa60.tar.gz
libcore-2feafbf54d9942afd925ba9b40972034df52aa60.tar.bz2
AI 143454: Temporarily removing the Expat test from the XML
test suite, so it can be run on the RI as well. BUG=1285921 Automated import of CL 143454
Diffstat (limited to 'xml/src/test/java')
-rw-r--r--xml/src/test/java/tests/api/javax/xml/parsers/AllTests.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/xml/src/test/java/tests/api/javax/xml/parsers/AllTests.java b/xml/src/test/java/tests/api/javax/xml/parsers/AllTests.java
index f0e8ebd..6a22109 100644
--- a/xml/src/test/java/tests/api/javax/xml/parsers/AllTests.java
+++ b/xml/src/test/java/tests/api/javax/xml/parsers/AllTests.java
@@ -40,7 +40,8 @@ public class AllTests {
suite.addTestSuite(ParserConfigurationExceptionTest.class);
suite.addTestSuite(SAXParserFactoryTest.class);
suite.addTestSuite(SAXParserTest.class);
- suite.addTestSuite(ExpatParserTest.class);
+ // TODO Move ExpatParser to impl tests package
+ // suite.addTestSuite(ExpatParserTest.class);
// $JUnit-END$
return suite;