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 Mar 22, 2024
1 parent ef234fb commit 4b31d7f
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 @@ -165,6 +165,59 @@ struct Structures
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];
};

module testing_1
{
struct foo
Expand Down

0 comments on commit 4b31d7f

Please sign in to comment.