diff options
author | Huang Jianan <huangjianan@oppo.com> | 2021-08-02 15:00:02 +0800 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2021-09-27 21:17:05 +0800 |
commit | 190df0bdb26adbc7f654e8945e54180ed0e901e3 (patch) | |
tree | 885a3499f06bdcfeb6299c2a21f2712ef3b82fff /apexd/apex_file_test.cpp | |
parent | 81b8907194b55146d7e1a10b824d0202dddaa62f (diff) |
Add EROFS support for APEXHEADlineage-18.1
Bug: 195274797
Test: ./apxer/runtests.sh
Change-Id: I19019d2809496bfc37eca1964e58a4e04d8bbbe7
Signed-off-by: Huang Jianan <huangjianan@oppo.com>
Diffstat (limited to 'apexd/apex_file_test.cpp')
-rw-r--r-- | apexd/apex_file_test.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apexd/apex_file_test.cpp b/apexd/apex_file_test.cpp index 9d2cf17..f8973be 100644 --- a/apexd/apex_file_test.cpp +++ b/apexd/apex_file_test.cpp @@ -42,7 +42,9 @@ struct ApexFileTestParam { }; constexpr const ApexFileTestParam kParameters[] = { - {"ext4", "apex.apexd_test"}, {"f2fs", "apex.apexd_test_f2fs"}}; + {"ext4", "apex.apexd_test"}, + {"f2fs", "apex.apexd_test_f2fs"}, + {"erofs", "apex.apexd_test_erofs"}}; class ApexFileTest : public ::testing::TestWithParam<ApexFileTestParam> {}; |