diff options
author | 2013-12-12 08:15:43 +0000 | |
---|---|---|
committer | 2013-12-12 08:15:44 +0000 | |
commit | 5f304d0d71b422d1fd4edc41c71e99181b6e8174 (patch) | |
tree | fc323b2f2ebf56b18a64d40df750abdfbc703a22 /java/src | |
parent | 75de9fb7ff5662360be6076622bcdac25d01f90b (diff) | |
parent | d06de553b2ac21dff9c8819eb59eda7bcba3f5e0 (diff) | |
download | latinime-5f304d0d71b422d1fd4edc41c71e99181b6e8174.tar.gz latinime-5f304d0d71b422d1fd4edc41c71e99181b6e8174.tar.xz latinime-5f304d0d71b422d1fd4edc41c71e99181b6e8174.zip |
Merge "Add waitAllTasksForTests for testing."
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java index 4cc31659c..ed80a9629 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java @@ -36,6 +36,7 @@ import java.util.HashMap; import java.util.Locale; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicReference; @@ -738,13 +739,19 @@ abstract public class ExpandableBinaryDictionary extends Dictionary { } @UsedForTesting - public void shutdownExecutorForTests() { - getExecutor(mDictName).shutdown(); - } - - @UsedForTesting - public boolean isTerminatedForTests() { - return getExecutor(mDictName).isTerminated(); + public void waitAllTasksForTests() { + final CountDownLatch countDownLatch = new CountDownLatch(1); + getExecutor(mDictName).execute(new Runnable() { + @Override + public void run() { + countDownLatch.countDown(); + } + }); + try { + countDownLatch.await(); + } catch (InterruptedException e) { + Log.e(TAG, "Interrupted while waiting for finishing dictionary operations.", e); + } } @UsedForTesting |