Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 19755e36 authored by Prabir Pradhan's avatar Prabir Pradhan
Browse files

Move framework input tests into the InputTests module

Bug: 290274722
Test: atest InputTests
Change-Id: Ie064d77f563c56455b03bf919b22b2f64e39318a
parent df75d134
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
include /services/core/java/com/android/server/input/OWNERS
+14 −1
Original line number Diff line number Diff line
@@ -19,13 +19,26 @@ android_test {
    platform_apis: true,
    certificate: "platform",
    static_libs: [
        "androidx.test.core",
        "androidx.test.ext.junit",
        "androidx.test.ext.truth",
        "androidx.test.rules",
        "androidx.test.runner",
        "androidx.test.uiautomator_uiautomator",
        "servicestests-utils",
        "frameworks-base-testutils",
        "hamcrest-library",
        "kotlin-test",
        "mockito-target-minus-junit4",
        "platform-test-annotations",
        "services.core.unboosted",
        "testables",
        "testng",
        "truth-prebuilt",
        "androidx.test.uiautomator_uiautomator",
    ],
    libs: [
        "android.test.mock",
        "android.test.base",
    ],
    test_suites: ["device-tests"],
}
+5 −2
Original line number Diff line number Diff line
@@ -16,11 +16,14 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.android.test.input">

    <uses-permission android:name="android.permission.INJECT_EVENTS"/>
    <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
    <uses-permission android:name="android.permission.MONITOR_INPUT"/>
    <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/>
    <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
    <uses-permission android:name="android.permission.INJECT_EVENTS"/>

    <application android:label="InputTest">
    <application android:label="InputTest" android:debuggable="true">

        <activity android:name=".UnresponsiveGestureMonitorActivity"
             android:label="Unresponsive gesture monitor"
Loading