Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / fail / array-redefinition / metadata
... / ...
CommitLineData
1/* CTF 1.8 */
2
3typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4typealias integer { size = 64; align = 8; signed = false; } := uint64_t;
5
6typedef uint32_t array_type[10];
7
8/* FAIL: type 'array_type' is already defined */
9typedef uint64_t array_type[10];
10
11
12trace {
13 major = 1;
14 minor = 8;
15 byte_order = le;
16 packet.header := struct {
17 uint32_t magic;
18 };
19};
This page took 0.021861 seconds and 4 git commands to generate.