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

Commit c1c110ee authored by Kevin Liu's avatar Kevin Liu
Browse files

Add strict_mode: false

As strict mode is in place, the default strict_mode is now set to true. We are encourage teams to write tests in strict_mode to make tests Bivalent (able to run on device and devicelessly)
For more info on strict mode: go/roboStrictMode

Flag: NONE
Test: atest SystemUiRoboTests, SpaRoboRNGTests, SettingsLibRoboTests, FrameworksServicesRoboTests, BackupFrameworksServicesRoboTests, InputRoboRNGTests
Bug: 334089788
Change-Id: I9827910496af67eab33efddb7c32d8e40b497c13
Merged-In: I9827910496af67eab33efddb7c32d8e40b497c13
parent adfb344c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -71,4 +71,6 @@ android_robolectric_test {
    upstream: true,
    java_resource_dirs: ["config"],
    instrumentation_for: "SpaRoboApp",

    strict_mode: false,
}
+2 −0
Original line number Diff line number Diff line
@@ -60,6 +60,8 @@ android_robolectric_test {
        timeout: 36000,
    },
    upstream: true,

    strict_mode: false,
}

java_genrule {
+2 −0
Original line number Diff line number Diff line
@@ -456,6 +456,8 @@ android_robolectric_test {
    plugins: [
        "dagger2-compiler",
    ],

    strict_mode: false,
}

// Opt-out config for optimizing the SystemUI target using R8.
+2 −0
Original line number Diff line number Diff line
@@ -64,6 +64,8 @@ android_robolectric_test {
    instrumentation_for: "FrameworksServicesLib",

    upstream: true,

    strict_mode: false,
}

filegroup {
+2 −0
Original line number Diff line number Diff line
@@ -68,4 +68,6 @@ android_robolectric_test {

    upstream: true,

    strict_mode: false,

}
Loading