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

Commit 590416bf authored by Nataniel Borges's avatar Nataniel Borges
Browse files

Create test module configs for rotation

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

Flag: TEST_ONLY
Bug: 351451943
Test: atest FlickerTestsRotation
Change-Id: Ifc433652a2259ac7b72bda8a046c34fdc376934f
parent 36a96a45
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
@@ -37,3 +37,41 @@ android_test {
    static_libs: ["FlickerTestsBase"],
    data: ["trace_config/*"],
}

////////////////////////////////////////////////////////////////////////////////
// Begin breakdowns for FlickerTestsRotation module

test_module_config {
    name: "FlickerTestsAppRotation-CatchAll",
    base: "FlickerTestsRotation",
    exclude_filters: [
        "com.android.server.wm.flicker.rotation.ChangeAppRotationTest",
        "com.android.server.wm.flicker.rotation.OpenShowWhenLockedSeamlessAppRotationTest",
        "com.android.server.wm.flicker.rotation.SeamlessAppRotationTest",
    ],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "FlickerTestsAppRotation-ChangeAppRotationTest",
    base: "FlickerTestsRotation",
    include_filters: ["com.android.server.wm.flicker.rotation.ChangeAppRotationTest"],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "FlickerTestsAppRotation-OpenShowWhenLockedSeamlessAppRotationTest",
    base: "FlickerTestsRotation",
    include_filters: ["com.android.server.wm.flicker.rotation.OpenShowWhenLockedSeamlessAppRotationTest"],
    test_suites: ["device-tests"],
}

test_module_config {
    name: "FlickerTestsAppRotation-SeamlessAppRotationTest",
    base: "FlickerTestsRotation",
    include_filters: ["com.android.server.wm.flicker.rotation.SeamlessAppRotationTest"],
    test_suites: ["device-tests"],
}

// End breakdowns for FlickerTestsRotation module
////////////////////////////////////////////////////////////////////////////////