Add env {} warning test case
[babeltrace.git] / tests / ctf-traces / succeed / env-warning / metadata
CommitLineData
97345aea
MD
1/* CTF 1.8 */
2typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t;
3typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t;
4
5trace {
6 major = 0;
7 minor = 1;
8 uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564";
9 byte_order = le;
10 packet.header := struct {
11 uint32_t magic;
12 uint8_t uuid[16];
13 };
14};
15
16env {
17 dummy = "blah";
18};
19
20stream {
21 packet.context := struct {
22 uint32_t content_size;
23 uint32_t packet_size;
24 };
25};
26
27event {
28 name = string;
29 fields := struct { string str; };
30};
This page took 0.023599 seconds and 4 git commands to generate.