From aee8ddbc46b8933e187b1991c4bf36926c01adb7 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 13 Jul 2022 16:45:11 -0700 Subject: [PATCH] vts_fs_test: Only require EROFS in T+ kernels. Bug: 237765186 Test: vts_fs_test Ignore-AOSP-First: cherry-pick Change-Id: I294535953bfbe0f246347487b746d3adf2fca1aa Merged-In: I294535953bfbe0f246347487b746d3adf2fca1aa --- fs_mgr/tests/vts_fs_test.cpp | 4 ++-- 1 file 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..ae8e45992 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__) { + // T-launch GKI kernels and higher must support EROFS. + if (GetVsrLevel() < __ANDROID_API_T__) { GTEST_SKIP(); }