Merge changes I29453595,I6586c8e5

* changes:
  vts_fs_test: Only require EROFS in T+ kernels.
  Revert "Do not enforce EROFS for android-T and below."
This commit is contained in:
David Anderson 2022-07-14 17:33:08 +00:00 committed by Gerrit Code Review
commit 0f7b66b604

View file

@ -28,8 +28,8 @@ static int GetVsrLevel() {
}
TEST(fs, ErofsSupported) {
// U and higher for this test.
if (GetVsrLevel() <= __ANDROID_API_T__) {
// T-launch GKI kernels and higher must support EROFS.
if (GetVsrLevel() < __ANDROID_API_T__) {
GTEST_SKIP();
}