summaryrefslogtreecommitdiffstats
path: root/core/tests/inputmethodtests/src
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2014-05-27 20:32:34 +0900
committerYohei Yukawa <yukawa@google.com>2014-05-27 20:32:34 +0900
commit529001f06761205bcaae1570d81556be397f56fb (patch)
treec31d64dd93b0fcae3a5c48d8fb7645b6dcad2919 /core/tests/inputmethodtests/src
parentc3a6e23e3f286271abbda0d99edee35d0ceb6692 (diff)
downloadframeworks_base-529001f06761205bcaae1570d81556be397f56fb.zip
frameworks_base-529001f06761205bcaae1570d81556be397f56fb.tar.gz
frameworks_base-529001f06761205bcaae1570d81556be397f56fb.tar.bz2
Switch back to StaticRotationList from DynamicRotationList
Ic005b94379f9d847ea, which introduced DynamicRotationList for smarter input method rotation, is suspected to be causing a strange behavior that InputMethodManager#switchToNextInputMethod is choosing unexected/disabled IME/subtype. With this CL, we switch back to StaticRotationList until the root cause is addressed. BUG: 7043015 Change-Id: I95fc8b28536cea6d09ea325e0caee14007cfc0a7
Diffstat (limited to 'core/tests/inputmethodtests/src')
-rw-r--r--core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java b/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java
index 04cfe05..c0c20e2 100644
--- a/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java
+++ b/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java
@@ -214,8 +214,9 @@ public class InputMethodSubtypeSwitchingControllerTest extends InstrumentationTe
disabledSubtypeUnawareIme, null);
}
+ // This test is disabled until DynamicRotationList is enabled.
@SmallTest
- public void testControllerImplWithUserAction() throws Exception {
+ public void DISABLED_testControllerImplWithUserAction() throws Exception {
final List<ImeSubtypeListItem> enabledItems = createEnabledImeSubtypes();
final ImeSubtypeListItem latinIme_en_US = enabledItems.get(0);
final ImeSubtypeListItem latinIme_fr = enabledItems.get(1);