OSDN Git Service

Increase the SHORT_DELAY amount in the JSR166 test.
authorBen Cheng <bccheng@android.com>
Mon, 15 Mar 2010 06:04:49 +0000 (23:04 -0700)
committerBen Cheng <bccheng@android.com>
Mon, 15 Mar 2010 06:04:49 +0000 (23:04 -0700)
Change-Id: I890621226c5ea412baee568f3e9b31833185849a

libcore/concurrent/src/test/java/tests/api/java/util/concurrent/JSR166TestCase.java

index c900616..1c872f1 100644 (file)
@@ -168,7 +168,10 @@ public class JSR166TestCase extends TestCase {
      * be reimplemented to use for example a Property.
      */
     protected long getShortDelay() {
-        return 50;
+        // BEGIN android-changed
+        // original value is 50
+        return 250;
+        // END android-changed
     }