Merge "fs_mgr: Restrict dt fstabs to < Q devices."

This commit is contained in:
David Anderson 2022-03-03 05:05:19 +00:00 committed by Gerrit Code Review
commit 390851dd29
2 changed files with 2 additions and 2 deletions

View file

@ -96,7 +96,7 @@ cc_test {
"device-tests",
],
test_options: {
min_shipping_api_level: 31,
min_shipping_api_level: 29,
},
require_root: true,
auto_gen_config: true,

View file

@ -102,7 +102,7 @@ TEST(fs, PartitionTypes) {
}
TEST(fs, NoDtFstab) {
if (GetVsrLevel() <= __ANDROID_API_S__) {
if (GetVsrLevel() < __ANDROID_API_Q__) {
GTEST_SKIP();
}