diff options
author | Igor Murashkin <iam@google.com> | 2020-03-25 13:22:57 -0700 |
---|---|---|
committer | Igor Murashkin <iam@google.com> | 2020-03-25 21:17:46 +0000 |
commit | a7176aaad16b5ea106ff32f1007068727239eb46 (patch) | |
tree | 651c2e614c34294d05b77dec7b7e10958a52eda1 /tests/AppLaunch | |
parent | d988f55a0a14ce13ffa27f869db6a8d4820ee01f (diff) |
tests: AppLaunch - increase sleep duration after resetting iorapd
Makes it less likely we'll launch the next app too quickly after
restarting iorapd.
Bug: 152322429
Test: am instrument
Change-Id: I4fc35665f03ae7d9fe073accfcb1e04842c737dd
Diffstat (limited to 'tests/AppLaunch')
-rw-r--r-- | tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java b/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java index 9be97b505a3f..f444b77b738e 100644 --- a/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java +++ b/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java @@ -767,7 +767,7 @@ public class AppLaunch extends InstrumentationTestCase { .executeShellCommand(String.format("setprop iorapd.readahead.enable %b", enable)); getInstrumentation().getUiAutomation() .executeShellCommand("start iorapd"); - sleep(2000); // give enough time for iorapd to start back up. + sleep(3000); // give enough time for iorapd to start back up. if (enable) { mIorapStatus = IorapStatus.ENABLED; |