From 18498714fe22c62de461179aba3f08195db17e5f Mon Sep 17 00:00:00 2001 From: Bryce Lee Date: Wed, 5 Apr 2017 14:49:44 -0700 Subject: [PATCH] Remove accidental debugger wait. Test: bit FrameworksServicesTests:com.android.server.am.ActivityStackSupervisorTests Change-Id: I129b139a14d925221f2c9b614f45aedac1f153b5 --- .../src/com/android/server/am/ActivityStackSupervisorTests.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/services/tests/servicestests/src/com/android/server/am/ActivityStackSupervisorTests.java b/services/tests/servicestests/src/com/android/server/am/ActivityStackSupervisorTests.java index b59c2bc93d731..8423affecd30a 100644 --- a/services/tests/servicestests/src/com/android/server/am/ActivityStackSupervisorTests.java +++ b/services/tests/servicestests/src/com/android/server/am/ActivityStackSupervisorTests.java @@ -18,7 +18,6 @@ package com.android.server.am; import static org.junit.Assert.assertNull; -import android.os.Debug; import android.platform.test.annotations.Presubmit; import android.support.test.filters.MediumTest; import android.support.test.runner.AndroidJUnit4; @@ -45,7 +44,6 @@ public class ActivityStackSupervisorTests extends ActivityTestsBase { */ @Test public void testRestoringInvalidTask() throws Exception { - Debug.waitForDebugger(); final ActivityManagerService service = createActivityManagerService(); TaskRecord task = service.mStackSupervisor.anyTaskForIdLocked(0 /*taskId*/, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE, 0 /*stackId*/);