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

Commit a49e025c authored by Nataniel Borges's avatar Nataniel Borges
Browse files

Create test module configs for bubbles

This will allow dynamic sharding to better schedule these modules in presubmit

Flag: TEST_ONLY
Bug: 351451943
Test: atest WMShellFlickerTestsBubbles
Change-Id: Ibbf9a6d5041460186451fdda22af349cc56a7f88
parent fda1f432
Loading
Loading
Loading
Loading
+55 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
//

package {
    default_team: "trendy_team_multitasking_windowing",
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "frameworks_base_license"
@@ -34,3 +35,57 @@ android_test {
    static_libs: ["WMShellFlickerTestsBase"],
    data: ["trace_config/*"],
}

////////////////////////////////////////////////////////////////////////////////
// Begin breakdowns for WMShellFlickerTestsBubbles module

test_module_config {
    name: "WMShellFlickerTestsBubbles-CatchAll",
    base: "WMShellFlickerTestsBubbles",
    exclude_filters: [
        "com.android.wm.shell.flicker.bubble.ChangeActiveActivityFromBubbleTest",
        "com.android.wm.shell.flicker.bubble.DragToDismissBubbleScreenTest",
        "com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleOnLocksreenTest",
        "com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleTest",
        "com.android.wm.shell.flicker.bubble.SendBubbleNotificationTest",
    ],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "WMShellFlickerTestsBubbles-ChangeActiveActivityFromBubbleTest",
    base: "WMShellFlickerTestsBubbles",
    include_filters: ["com.android.wm.shell.flicker.bubble.ChangeActiveActivityFromBubbleTest"],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "WMShellFlickerTestsBubbles-DragToDismissBubbleScreenTest",
    base: "WMShellFlickerTestsBubbles",
    include_filters: ["com.android.wm.shell.flicker.bubble.DragToDismissBubbleScreenTest"],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "WMShellFlickerTestsBubbles-OpenActivityFromBubbleOnLocksreenTest",
    base: "WMShellFlickerTestsBubbles",
    include_filters: ["com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleOnLocksreenTest"],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "WMShellFlickerTestsBubbles-OpenActivityFromBubbleTest",
    base: "WMShellFlickerTestsBubbles",
    include_filters: ["com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleTest"],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "WMShellFlickerTestsBubbles-SendBubbleNotificationTest",
    base: "WMShellFlickerTestsBubbles",
    include_filters: ["com.android.wm.shell.flicker.bubble.SendBubbleNotificationTest"],
    test_suites: ["device-tests"],
}

// End breakdowns for WMShellFlickerTestsBubbles module
////////////////////////////////////////////////////////////////////////////////