summaryrefslogtreecommitdiffstats
path: root/luni
diff options
context:
space:
mode:
authorcrazybob <crazybob@google.com>2009-07-02 13:35:18 -0500
committercrazybob <crazybob@google.com>2009-07-02 13:35:18 -0500
commit25ffc86ccc20b9f07cea44c347487eb157ccadd7 (patch)
tree982611c7bf6d6fd3e5fd0fc5320851de6d539b04 /luni
parenteeff8168c7dddfd360c0b80b8b8e00c970f0dd91 (diff)
downloadlibcore-25ffc86ccc20b9f07cea44c347487eb157ccadd7.zip
libcore-25ffc86ccc20b9f07cea44c347487eb157ccadd7.tar.gz
libcore-25ffc86ccc20b9f07cea44c347487eb157ccadd7.tar.bz2
Commented out invalid test.
Diffstat (limited to 'luni')
-rw-r--r--luni/src/test/java/tests/api/java/lang/reflect/ProxyTest.java18
1 files changed, 11 insertions, 7 deletions
diff --git a/luni/src/test/java/tests/api/java/lang/reflect/ProxyTest.java b/luni/src/test/java/tests/api/java/lang/reflect/ProxyTest.java
index c2552a3..7ae8d94 100644
--- a/luni/src/test/java/tests/api/java/lang/reflect/ProxyTest.java
+++ b/luni/src/test/java/tests/api/java/lang/reflect/ProxyTest.java
@@ -103,13 +103,17 @@ public class ProxyTest extends junit.framework.TestCase {
new Class[] { Comparable.class })));
boolean aborted = false;
- try {
- Proxy.getProxyClass(null, new Class[] { Support_Proxy_I1.class,
- Support_Proxy_I2.class });
- } catch (IllegalArgumentException e) {
- aborted = true;
- }
- assertTrue("Default classLoader should not see app class ", aborted);
+// TODO: We load the test classes in the bootclasspath, so they are visible
+// to the default loader. We can re-enable this test once we move the CTS
+// tests to the system classpath.
+//
+// try {
+// Proxy.getProxyClass(null, new Class[] { Support_Proxy_I1.class,
+// Support_Proxy_I2.class });
+// } catch (IllegalArgumentException e) {
+// aborted = true;
+// }
+// assertTrue("Default classLoader should not see app class ", aborted);
aborted = false;
try {