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

Commit 87e7b05f authored by John Wu's avatar John Wu
Browse files

Exclude tests using dagger in SystemUiRavenTests

Bug: 319647875
Flag: EXEMPT host side change only
Test: atest SystemUiRavenTests
Change-Id: I8abea3391f5647a0379bc92d0d6934ab7be7aeb9
parent 1dadfc94
Loading
Loading
Loading
Loading
+14 −3
Original line number Diff line number Diff line
@@ -968,6 +968,16 @@ android_robolectric_test {
    strict_mode: false,
}

filegroup {
    name: "SystemUI-tests-multivalent-dagger",
    srcs: [
        "multivalentTests/src/**/NotificationAlertsInteractorTest.kt",
        "multivalentTests/src/**/NotificationsKeyguardInteractorTest.kt",
        "multivalentTests/src/**/NotifPipelineChoreographerTest.kt",
        "multivalentTests/src/**/KeyguardNotificationVisibilityProviderTest.java"
    ],
}

android_ravenwood_test {
    name: "SystemUiRavenTests",
    srcs: [
@@ -977,6 +987,10 @@ android_ravenwood_test {
        // use_resource_processor: true when better supported by soong
        ":SystemUI-tests-res{.aapt.srcjar}",
    ],
    exclude_srcs: [
        // TODO(b/429013941): kapt is way too slow, so disable them for now.
        ":SystemUI-tests-multivalent-dagger",
    ],
    static_libs: [
        "SystemUI-core",
        "SystemUI-tests-base",
@@ -996,9 +1010,6 @@ android_ravenwood_test {
    resource_apk: "SystemUI-tests-res",
    auto_gen_config: true,
    team: "trendy_team_ravenwood",
    plugins: [
        "dagger2-compiler",
    ],
}

// Opt-out config for optimizing the SystemUI target using R8.