diff options
author | Jorg Pleumann <> | 2009-04-27 09:15:18 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-04-27 09:15:18 -0700 |
commit | 1a7e762f344c111416b001a61e41451d01f605ad (patch) | |
tree | 7e0045a37b2f99a27890856a0c011036df7c4057 /dom/src/test/java/tests | |
parent | 016a87c7952b25eededfc222615e25a5a72bcdda (diff) | |
download | libcore-1a7e762f344c111416b001a61e41451d01f605ad.zip libcore-1a7e762f344c111416b001a61e41451d01f605ad.tar.gz libcore-1a7e762f344c111416b001a61e41451d01f605ad.tar.bz2 |
AI 147838: A couple of fixes for making the
core tests work better in the CTS
environment. Some tests had to be
marked broken either because they
either expose different behavior
than in run-core-tests or they
take too much time (beyond the
CTS' timeout).
BUG=1285921
Automated import of CL 147838
Diffstat (limited to 'dom/src/test/java/tests')
-rw-r--r-- | dom/src/test/java/tests/dom/AllTests.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dom/src/test/java/tests/dom/AllTests.java b/dom/src/test/java/tests/dom/AllTests.java index 7a50c0a..6a5831f 100644 --- a/dom/src/test/java/tests/dom/AllTests.java +++ b/dom/src/test/java/tests/dom/AllTests.java @@ -16,6 +16,8 @@ package tests.dom; +import org.w3c.domts.JunitTestCases; + import junit.framework.Test; import junit.framework.TestSuite; @@ -23,8 +25,7 @@ public class AllTests { public static Test suite() { TestSuite suite = tests.TestSuiteFactory.createTestSuite(); - suite.addTest(tests.api.org.w3c.dom.AllTests_Level1.suite()); - suite.addTest(tests.api.org.w3c.dom.AllTests_Level2.suite()); + suite.addTestSuite(JunitTestCases.class); return suite; } |