commit | ee8996c31085a46c83a188f4d511cf307c511f05 | [log] [tgz] |
---|---|---|
author | P.Adarsh Reddy <quic_padarshr@quicinc.com> | Wed Jul 13 17:43:00 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Jul 13 17:43:00 2022 +0000 |
tree | b64cfec633cc82e2db3eb06c2cb8f1232b7f027e | |
parent | f2e9b1e06a1324a66b03bda1a5446bbeebafb3c3 [diff] | |
parent | ea705b6886cd62458b48e4eefa6e28ebe0d27f1c [diff] |
Do not enforce EROFS for android-T and below. am: b2182ee8e0 am: ea705b6886 Original change: https://googleplex-android-review.googlesource.com/c/platform/system/core/+/19263117 Change-Id: Iae9aa098fe96311f8f489c33054048c95b5c51ff Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/fs_mgr/tests/vts_fs_test.cpp b/fs_mgr/tests/vts_fs_test.cpp index aac2cfd..3f12103 100644 --- a/fs_mgr/tests/vts_fs_test.cpp +++ b/fs_mgr/tests/vts_fs_test.cpp
@@ -28,8 +28,8 @@ } 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(); }