Do not enforce EROFS for android-T and below.

EROFS is not mandatory for android T and below,
so skip the test for those.

Bug: 237765186
Test: vts_fs_test fs#ErofsSupported
Change-Id: Iceea46f8f2d443636de504962b718a2461605591
This commit is contained in:
P.Adarsh Reddy 2022-07-08 12:52:27 +05:30 committed by P. Adarsh Reddy
parent ff3fdf36ef
commit a571d4a9bc

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