Skip to content

Commit

Permalink
Refs #20421: Added regresion tests for TypeIdentifier comparation.
Browse files Browse the repository at this point in the history
Signed-off-by: adriancampo <[email protected]>
  • Loading branch information
adriancampo committed Feb 12, 2024
1 parent b3f1a72 commit fab20d4
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions IDL/structures.idl
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,56 @@ struct Structures
StructBitset var_StructBitset;
StructEmpty var_StructEmpty;
};

struct StructShortBIS
{
short var_short;
};

struct ContentSeqStruct {
sequence<StructShort> var_seq;
};

struct ContentBISSeqStruct {
sequence<StructShortBIS> var_seq;
};

struct ContentBigSeqStruct {
sequence<StructShort, 1000> var_seq;
};

struct ContentBISBigSeqStruct {
sequence<StructShortBIS, 1000> var_seq;
};

struct ContentMapStruct {
map<short, StructShort> var_map;
};

struct ContentBISMapStruct {
map<short, StructShortBIS> var_map;
};

struct ContentBigMapStruct {
map<short, StructShort, 1000> var_map;
};

struct ContentBISBigMapStruct {
map<short, StructShortBIS, 1000> var_map;
};

struct ContentArrayStruct {
StructShort var_array[10];
};

struct ContentBISArrayStruct {
StructShortBIS var_array[10];
};

struct ContentBigArrayStruct {
StructShort var_array[1000];
};

struct ContentBISBigArrayStruct {
StructShortBIS var_array[1000];
};

0 comments on commit fab20d4

Please sign in to comment.