Merge "Do not enforce EROFS for android-T and below."

This commit is contained in:
Treehugger Robot 2022-07-12 06:39:59 +00:00 committed by Gerrit Code Review
commit eebd7f2b7d

View file

@ -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();
}