Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9f584e15 authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi
Browse files

Add additional wait for writing file in testAddManyWords().

Change-Id: Ibb79b9821dac3d48e18c684e8aca605254bec045
parent 0807c897
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -647,7 +647,7 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
    @UsedForTesting
    public void waitAllTasksForTests() {
        final CountDownLatch countDownLatch = new CountDownLatch(1);
        ExecutorUtils.getExecutor(mDictName).execute(new Runnable() {
        asyncExecuteTaskWithWriteLock(new Runnable() {
            @Override
            public void run() {
                countDownLatch.countDown();
+10 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ import java.util.concurrent.TimeUnit;
@LargeTest
public class UserHistoryDictionaryTests extends AndroidTestCase {
    private static final String TAG = UserHistoryDictionaryTests.class.getSimpleName();
    private static final int WAIT_FOR_WRITING_FILE_IN_MILLISECONDS = 3000;

    private static final String[] CHARACTERS = {
        "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m",
@@ -248,6 +249,15 @@ public class UserHistoryDictionaryTests extends AndroidTestCase {
        } finally {
            Log.d(TAG, "waiting for writing ...");
            waitForWriting(dummyLocale);
            if (!dictFile.exists()) {
                try {
                    Log.d(TAG, dictFile +" is not existing. Wait "
                            + WAIT_FOR_WRITING_FILE_IN_MILLISECONDS + " ms for writing.");
                    Thread.sleep(WAIT_FOR_WRITING_FILE_IN_MILLISECONDS);
                } catch (final InterruptedException e) {
                    Log.e(TAG, "Interrupted during waiting for writing the dict file.");
                }
            }
            assertTrue("check exisiting of " + dictFile, dictFile.exists());
            FileUtils.deleteRecursively(dictFile);
        }