summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorP.Adarsh Reddy <quic_padarshr@quicinc.com>2022-07-13 17:59:11 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-07-13 17:59:11 +0000
commit6bc4d48268f62ead894cad32713659fa43a0b49f (patch)
tree48a4dcfd3fa61a468dec44fa3a14efcef61ff3e4
parentb6654eba7cb7ff7f366d6467d0b805959f17aefd (diff)
parentee8996c31085a46c83a188f4d511cf307c511f05 (diff)
downloadcore-6bc4d48268f62ead894cad32713659fa43a0b49f.tar.gz
Do not enforce EROFS for android-T and below. am: b2182ee8e0 am: ea705b6886 am: ee8996c310
Original change: https://googleplex-android-review.googlesource.com/c/platform/system/core/+/19263117 Change-Id: Ie5bc1e56106af916cfb9eaa89240d03d200ad944 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--fs_mgr/tests/vts_fs_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs_mgr/tests/vts_fs_test.cpp b/fs_mgr/tests/vts_fs_test.cpp
index aac2cfd9b..3f1210396 100644
--- a/fs_mgr/tests/vts_fs_test.cpp
+++ b/fs_mgr/tests/vts_fs_test.cpp
@@ -28,8 +28,8 @@ static int GetVsrLevel() {
}
TEST(fs, ErofsSupported) {
- // S and higher for this test.
- if (GetVsrLevel() < __ANDROID_API_S__) {
+ // U and higher for this test.
+ if (GetVsrLevel() <= __ANDROID_API_T__) {
GTEST_SKIP();
}