summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-02-28 22:33:40 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-02-28 22:33:40 +0000
commit12218158b92e26577a687f43597b87e22886c5b3 (patch)
tree5b3b0945be873c7658e0780d8de02e564051bb1d
parent833425223279ab5b3f609676a49a30fd08b06da2 (diff)
parente4be10887b9796e2a24c3c7a3ad70f584e9ad54e (diff)
downloadgsid-aml_tet_341810050.tar.gz
Snap for 11507696 from e4be10887b9796e2a24c3c7a3ad70f584e9ad54e to mainline-tethering-releaseaml_tet_341810050aml_tet_341712060aml_tet_341810050
Change-Id: Ia6126a319d68a361fce1422a2ec534f74936fb12
-rw-r--r--tests/boot_tests.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/boot_tests.cpp b/tests/boot_tests.cpp
index 6aeded3..6264843 100644
--- a/tests/boot_tests.cpp
+++ b/tests/boot_tests.cpp
@@ -35,6 +35,12 @@ using android::hardware::weaver::V1_0::IWeaver;
using android::hardware::weaver::V1_0::WeaverConfig;
using android::hardware::weaver::V1_0::WeaverStatus;
+
+static bool IsAutomotiveDevice() {
+ auto hw_type = android::base::GetProperty("ro.hardware.type", "");
+ return hw_type == "automotive";
+}
+
TEST(MetadataPartition, FirstStageMount) {
Fstab fstab;
if (ReadFstabFromDt(&fstab)) {
@@ -85,7 +91,7 @@ TEST(Weaver, MinimumSlots) {
}
TEST(MetadataPartition, FsType) {
- if (GetVsrLevel() < __ANDROID_API_T__) {
+ if (GetVsrLevel() < __ANDROID_API_T__ || IsAutomotiveDevice()) {
GTEST_SKIP();
}