From 61019113c4abdaa52950998d971d19ed8c04ad74 Mon Sep 17 00:00:00 2001 From: Amith Yamasani Date: Tue, 10 Jan 2017 15:05:00 -0800 Subject: [PATCH] Add missing break statement to fix cts test Fix CTS test LocalVoiceInteractionTest#testLifecycle Fixes: 34194821 Test: cts-tradefed run commandAndExit cts --skip-device-info --skip-system-status-check --abi=armeabi-v7a -m CtsVoiceInteractionTestCases -t android.voiceinteraction.cts.LocalVoiceInteractionTest#testLifecycle Change-Id: If14126e645b2d0a1307404e2f50088b3994abce2 --- core/java/android/app/ActivityThread.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index e34fabced5179..f672b70539b7e 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -1758,6 +1758,7 @@ public final class ActivityThread { case LOCAL_VOICE_INTERACTION_STARTED: handleLocalVoiceInteractionStarted((IBinder) ((SomeArgs) msg.obj).arg1, (IVoiceInteractor) ((SomeArgs) msg.obj).arg2); + break; case ATTACH_AGENT: handleAttachAgent((String) msg.obj); break;