Revert "wait-for-broadcast-idle before stopUser in UserLifecycleTests."

This reverts commit dde7a33173.

Reason for revert: b/240771273

Change-Id: Id2e83efde04ef6e124f91854d8828e99ba9bb745
This commit is contained in:
Yasin Kilicdere
2022-08-04 14:28:41 +00:00
parent dde7a33173
commit f79d59a7cb

View File

@@ -316,8 +316,6 @@ public class UserLifecycleTests {
mIam.startUserInBackground(userId);
}, Intent.ACTION_USER_STARTED, Intent.ACTION_MEDIA_MOUNTED);
waitForBroadcastIdle();
mRunner.resumeTiming();
Log.i(TAG, "Starting timer");
@@ -680,8 +678,6 @@ public class UserLifecycleTests {
}
private void stopUser(int userId, boolean force) throws RemoteException {
waitForBroadcastIdle();
final CountDownLatch latch = new CountDownLatch(1);
mIam.stopUser(userId, force /* force */, new IStopUserCallback.Stub() {
@Override
@@ -886,8 +882,4 @@ public class UserLifecycleTests {
assertEquals("", ShellHelper.runShellCommand("setprop " + name + " " + value));
return oldValue;
}
private void waitForBroadcastIdle() {
ShellHelper.runShellCommand("am wait-for-broadcast-idle");
}
}