Merge "libsnapshot: compile tests for both 32 and 64 bit" into main

This commit is contained in:
Akilesh Kailash 2024-08-08 00:12:31 +00:00 committed by Gerrit Code Review
commit 0fe7deb212
2 changed files with 20 additions and 8 deletions

View file

@ -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",
},
],
},
}

View file

@ -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 {