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

Commit 28c85b78 authored by Andreas Huber's avatar Andreas Huber
Browse files

Adds a test to verify proper marshaling of vectors of arrays in Java

Bug: 32180328
Test: hidl_test_java
Change-Id: I756ce1d2ce35b7a3a63c6dbafba90e9765d61f64
parent 51a703ae
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -76,6 +76,9 @@ interface IBase {

    someMethodWithVectorOfArray(VectorOfArray in) generates (VectorOfArray out);

    someMethodTakingAVectorOfArray(vec<MacAddress> in)
        generates (vec<MacAddress> out);

    transpose(StringMatrix5x3 in) generates (StringMatrix3x5 out);
    transpose2(ThreeStrings[5] in) generates (FiveStrings[3] out);
};