Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / pass / struct-inner-struct / metadata
1 /* CTF 1.8 */
2
3 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4
5 struct dummy1 {
6 uint32_t field1;
7 }
8
9 /* PASS: Inner structure is defined earlier */
10 struct dummy2 {
11 uint32_t field2;
12 struct dummy1 field3;
13 };
14
15
16 trace {
17 major = 1;
18 minor = 8;
19 byte_order = le;
20 packet.header := struct {
21 uint32_t magic;
22 };
23 };
This page took 0.03144 seconds and 4 git commands to generate.