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

Commit 2317bbad authored by Akilesh Kailash's avatar Akilesh Kailash
Browse files

libsnapshot: compile tests for both 32 and 64 bit



Bug: 352605053
Test: th
Change-Id: I0566e237d1151c705d61623be4b496d73b9ec3ea
Signed-off-by: default avatarAkilesh Kailash <akailash@google.com>
parent 3e464e6e
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -281,9 +281,17 @@ cc_defaults {
    header_libs: [
        "libstorage_literals_headers",
    ],
    compile_multilib: "both",
    multilib: {
        lib32: {
            suffix: "32",
        },
        lib64: {
            suffix: "64",
        },
    },
    auto_gen_config: true,
    require_root: true,
    compile_multilib: "first",
}

cc_test {
@@ -316,12 +324,6 @@ cc_test {
    test_options: {
        // Legacy VAB launched in Android R.
        min_shipping_api_level: 30,
        test_runner_options: [
            {
                name: "force-no-test-error",
                value: "false",
            },
        ],
    },
}

+11 −1
Original line number Diff line number Diff line
@@ -238,9 +238,19 @@ cc_defaults {
    test_options: {
        min_shipping_api_level: 30,
    },

    compile_multilib: "both",
    multilib: {
        lib32: {
            suffix: "32",
        },
        lib64: {
            suffix: "64",
        },
    },

    auto_gen_config: true,
    require_root: true,
    compile_multilib: "first",
}

cc_test {