summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Anderson <dvander@google.com>2022-07-13 20:51:43 +0000
committerDavid Anderson <dvander@google.com>2022-07-14 17:47:47 +0000
commit3282850933b8bc6a630bdb432bbfe3dd5b5e3ee3 (patch)
tree2acdf6b9b473b58a10dfc4e0cc62073b3a6dc519
parentb2182ee8e08ff88dd528e2a48c459bbd8b157c48 (diff)
downloadcore-3282850933b8bc6a630bdb432bbfe3dd5b5e3ee3.tar.gz
Revert "Do not enforce EROFS for android-T and below."
This reverts commit a571d4a9bcb96d0a797bd3c99008a40c413503d4. Reason for revert: Incorrect fix Bug: 237765186 Ignore-AOSP-First: cherry-pick Change-Id: I6586c8e53cc89418d1802807a1a2e108f7e825d3 Merged-In: I6586c8e53cc89418d1802807a1a2e108f7e825d3
-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 3f1210396..aac2cfd9b 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) {
- // U and higher for this test.
- if (GetVsrLevel() <= __ANDROID_API_T__) {
+ // S and higher for this test.
+ if (GetVsrLevel() < __ANDROID_API_S__) {
GTEST_SKIP();
}