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

This reverts commit a571d4a9bc.

Reason for revert: Incorrect fix

Change-Id: I6586c8e53cc89418d1802807a1a2e108f7e825d3
This commit is contained in:
David Anderson 2022-07-13 20:51:43 +00:00
parent 1012626192
commit ffda48e959

View file

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