Handle integers in lexer rather than grammar
[babeltrace.git] / tests / ctf-traces / fail / integer-range / metadata
1 /* CTF 1.8 */
2 typealias integer { size = 8; align = 8; signed = false; } := uint8_t;
3 typealias integer { size = 32; align = 32; signed = false; } := uint32_t;
4
5 trace {
6 /* Integer out of range */
7 major = 23452397856348975623897562893746589237465289374658923764598237645897234658723648579236;
8 minor = 1;
9 uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564";
10 byte_order = le;
11 packet.header := struct {
12 uint32_t magic;
13 uint8_t uuid[16];
14 };
15 };
16
17 stream {
18 packet.context := struct {
19 uint32_t content_size;
20 uint32_t packet_size;
21 };
22 };
23
24 event {
25 name = string;
26 fields := struct { string str; };
27 };
This page took 0.028238 seconds and 4 git commands to generate.