Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea705b68 authored by P.Adarsh Reddy's avatar P.Adarsh Reddy Committed by Automerger Merge Worker
Browse files

Do not enforce EROFS for android-T and below. am: b2182ee8

parents 6a7cb896 b2182ee8
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -28,8 +28,8 @@ static int GetVsrLevel() {
}
}


TEST(fs, ErofsSupported) {
TEST(fs, ErofsSupported) {
    // S and higher for this test.
    // U and higher for this test.
    if (GetVsrLevel() < __ANDROID_API_S__) {
    if (GetVsrLevel() <= __ANDROID_API_T__) {
        GTEST_SKIP();
        GTEST_SKIP();
    }
    }