diff options
| -rw-r--r-- | libs/binder/rust/tests/parcel_fuzzer/read_utils.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/binder/rust/tests/parcel_fuzzer/read_utils.rs b/libs/binder/rust/tests/parcel_fuzzer/read_utils.rs index a2d48b6115..2c8d05facd 100644 --- a/libs/binder/rust/tests/parcel_fuzzer/read_utils.rs +++ b/libs/binder/rust/tests/parcel_fuzzer/read_utils.rs @@ -89,14 +89,17 @@ pub const READ_FUNCS: &[fn(&BorrowedParcel<'_>)] = &[ read_parcel_interface!(Option<Vec<u64>>), read_parcel_interface!(Option<Vec<String>>), read_parcel_interface!(ParcelFileDescriptor), + read_parcel_interface!(Vec<ParcelFileDescriptor>), read_parcel_interface!(Vec<Option<ParcelFileDescriptor>>), read_parcel_interface!(Option<Vec<ParcelFileDescriptor>>), read_parcel_interface!(Option<Vec<Option<ParcelFileDescriptor>>>), read_parcel_interface!(SpIBinder), + read_parcel_interface!(Vec<SpIBinder>), read_parcel_interface!(Vec<Option<SpIBinder>>), read_parcel_interface!(Option<Vec<SpIBinder>>), read_parcel_interface!(Option<Vec<Option<SpIBinder>>>), read_parcel_interface!(SomeParcelable), + read_parcel_interface!(Vec<SomeParcelable>), read_parcel_interface!(Vec<Option<SomeParcelable>>), read_parcel_interface!(Option<Vec<SomeParcelable>>), read_parcel_interface!(Option<Vec<Option<SomeParcelable>>>), |