summaryrefslogtreecommitdiff
path: root/tools/pdl/test/count-field.pdl
blob: a88cccdec8c3056987e4a4f55a00521bd7baaf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
little_endian_packets

packet Undefined {
    _count_ (array): 8,
}

packet InvalidType {
    _count_ (array): 8,
    array: 16,
}

packet InvalidOrder {
    array: 16[],
    _count_ (array): 8,
}

packet InvalidSize {
    _count_ (array): 8,
    array: 16[32],
}

packet Correct {
    _count_ (array): 8,
    array: 16[],
}