Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / fail / lexer-literal-guid-corrupted / metadata
1 /* CTF 1.8 */
2 typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t;
3 typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t;
4
5 typealias integer { size = 32; align = 32; signed = false; base = hex; } := int;
6
7 trace {
8 major = 1;
9 minor = 8;
10 uuid = "\0a6422d0-6cee-11e0-8c08-cb07d7b3a564"; // yes, it's a NUL char in front!
11 byte_order = le;
12 packet.header := struct {
13 uint32_t magic;
14 uint8_t uuid[16];
15 };
16 };
This page took 0.029875 seconds and 4 git commands to generate.