- 22 Jan, 2010 1 commit
-
-
Brett Chabot authored
-
- 21 Jan, 2010 2 commits
-
-
Brett Chabot authored
Bug 2322662 Change-Id: If35a5a75f664535bd4eb97cf11a6afe5b0e5b4a9
-
Brett Chabot authored
Add additional logic to skip checks that require specific locales. Bug 2386416 Change-Id: Icc30e04d393a22b272966555e617598323aefa0b
-
- 12 Jan, 2010 1 commit
-
-
Brett Chabot authored
Skip more tests if required locales are not present. Change-Id: I562da3222bccd6f264714d10f8db57e087e2561a
-
- 08 Jan, 2010 1 commit
-
-
Brett Chabot authored
Skip the test if required Locale is not present. Bug 2343677 Change-Id: I0f2672bd4b56cc1685e7368921aaa1e9d4492cf0
-
- 22 Dec, 2009 2 commits
-
-
Android (Google) Code Review authored
* changes: Skip locale dependent libcore tests if required locales are not present.
-
Brett Chabot authored
Previously these tests were marked as KnownFailures - which is undesirable since they can pass if the right Locale's are present on target. Bug 2335906 Change-Id: I1d9b205f740b71880c57b48f069c302c5cec8792
-
- 21 Dec, 2009 2 commits
-
-
Android (Google) Code Review authored
* changes: doc change: fix a broken link in class summary
-
Scott Main authored
-
- 14 Dec, 2009 1 commit
-
-
Brett Chabot authored
Bug 2155700 Change-Id: Ib0f9d363842d713ce3e07cdd303078c5c3e518c9
-
- 07 Dec, 2009 1 commit
-
-
Dan Bornstein authored
mechanism be able to handle exception constructors that take Object instead of String. (2) Add a convenience in JNIHelp to throw RuntimeExceptions. Change-Id: Ie5ce680c30043a4b186e59d7c8883666648b2c87
-
- 07 Nov, 2009 1 commit
-
-
Brett Chabot authored
-
- 08 Oct, 2009 2 commits
-
-
Brett Chabot authored
Merge commit '32f89821' into eclair * commit '32f89821': Remove tests.api.java.io.FileTest#test_delete as known failure.
-
Brett Chabot authored
Merge commit 'c4d33d9d' into eclair * commit 'c4d33d9d': Fix ClassLoaderTest to work on DEXPREOPT builds.
-
- 01 Oct, 2009 3 commits
-
-
Android (Google) Code Review authored
* changes: Make the socket test accept ::1 as a valid result for InetAddress.getByName(null) if the system is set to prefer IPv6 addresses.
-
Lorenzo Colitti authored
InetAddress.getByName(null) if the system is set to prefer IPv6 addresses. Change-Id: I96cd6f5b632994b73af13e341cf6f684f6eee4cd
-
Lorenzo Colitti authored
1. Make native code properly set network interface indexes that are used for new-style multicast socket options. 2. For IP_MULTICAST_IF, check that the address is IPv4, not the socket. 3. Remove a @KnownFailure annotation for a test that now passes. This removes one test error and changes it into a more benign failure. The remaining test failures seem to be due to Linux bening permissive about which interfaces you can receive multicast traffic on, which is probably good enough for now. Change-Id: Id1fddee338addcfce821672b983485c7dd4983d4
-
- 30 Sep, 2009 12 commits
-
-
Android (Google) Code Review authored
* changes: Fixes for socket options on multicast sockets.
-
Lorenzo Colitti authored
1. Properly pass get/setsockopt the pointer to the socket option instead of the pointer to the pointer to the option. This was not caught at compile time because it's a void *. 2. Handle IPv4 multicast addresses on IPv6 sockets. This is important because current devices create IPv6 sockets by default. 3. Use the proper options for IPv6 multicast (i.e., IPV6_{ADD,DROP}_MEMBERSHIP instead of IP_{ADD,DROP}_MEMBERSHIP) 4. Use integers instead of bytes when getting or setting the multicast TTL because that's what the Linux kernel uses. These fix 10 of the 11 MulticastSocketTest failures. Also, minor changes: 1. Add ifdefd-out logging functions for get/setsockopt. 2. Change all instances of IPPROTO_{IP,IPv6} to SOL_{IP,IPV6} in get/setsockopt calls. Even though the values are the same (so the code worked), this way is more correct. Change-Id: Iea75a523d7e71f0b361a42c0e39d3ef075dc7ff4
-
Android (Google) Code Review authored
* changes: Remove @KnownFailure tags for tests that pass.
-
Jesse Wilson authored
Also cleanup tests.api.java.io.SerializationStressTest4#test_writeObject_Proxy
-
Android (Google) Code Review authored
* changes: Fixing a lame test that was relying on hashmap iteration order.
-
Jesse Wilson authored
-
Android (Google) Code Review authored
* changes: Fixing a Harmony regression in ObjectInputStream.
-
Jesse Wilson authored
We check the field type against the instance being populated and not the field descriptor on the wire. The root cause is a bug in Harmony which we should send upstream.
-
Android (Google) Code Review authored
* changes: Fixing tests that exercise SecurityManager plus stack inspection.
-
Jesse Wilson authored
The tests were both broken previously. They both relied on having specific bootloader classes in their call stack.
-
Android (Google) Code Review authored
* changes: Fix BigInteger math bugs.
-
Jesse Wilson authored
This initializes the internal representation before doing left shifts. I'd originally missed this in the first Harmony update; change 20002.
-
- 26 Sep, 2009 1 commit
-
-
Android (Google) Code Review authored
* changes: DO NOT MERGE: Cleaning up PipedInputStream
-
- 25 Sep, 2009 2 commits
-
-
Jesse Wilson authored
See bug 2021674 for discussion. I searched Google Code Search to sample which of these APIs are being used. None of these APIs were used by applications, so I'm quite confident that removing them will not break applications or upset developers. These APIs were neither formerly documented, nor intended for use by application developers. I am deprecating them now to discourage their use going forward. We should remove them in a future release.
-
Jesse Wilson authored
-
- 24 Sep, 2009 1 commit
-
-
Andy McFadden authored
Functions that could call dvmAbort() from more than one place were merging the calls together, which is great until you need to decode a native stack trace. For 2144313.
-
- 23 Sep, 2009 2 commits
-
-
Android (Google) Code Review authored
* changes: Use native code to convert strings to IP addresses.
-
Lorenzo Colitti authored
1. Add an ipStringToByteArray method to the OSNetworkSystem interface and provide a native implementation for it. 2. Change InetAddress to use the new method. 3. Remove a mid-sized chunk of Inet6Util, which is now redundant. 4. Remove the KnownFailure annotations from the InetAddress, InetAddress and Inet6Address tests that expected 1.2.3, 1.3 and 3 to be valid IPv4 addresses. These tests now pass again. 5. Removed an unused native method. 6. Added a comment to the top of the native socket implementation to the effect that the file is significantly different from harmony. Change-Id: I3665f82b00ebc089e9133cc6166dda5a99fa10e4
-
- 22 Sep, 2009 5 commits
-
-
Andy McFadden authored
Some content changes inspired by external developer feedback, plus some corrections of long-standing typos.
-
Android (Google) Code Review authored
* changes: Another doc update.
-
Android (Google) Code Review authored
* changes: Fixed LinkedHashMap bug 2121546 Also made minor improvements in LinkedHashMap and NegativeCache. (The "opportunities for improvement" were discovered while investigating the bug.)
-
Joshua Bloch authored
Also made minor improvements in LinkedHashMap and NegativeCache. (The "opportunities for improvement" were discovered while investigating the bug.)
-
Android (Google) Code Review authored
* changes: Replaced an O(N) algorithm with an O(1) algorithm. This shaves off 2/3 of the server cert checking time or ~200ms on Sapphire. This is in preparation for tripling the number of certs in an upcoming change.
-