Fix: Handle barectf 2 configurations with any configured byte order
[barectf.git] / tests / tracing / configs / basic / byte-order / trace-byte-order-big-endian.yaml
1 # The MIT License (MIT)
2 #
3 # Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
4 # Copyright (c) 2023 Erica Bugden <ebugden@efficios.com>
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be
15 # included in all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21 # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25 # Tests that barectf generates a tracer which produces a valid trace on
26 # a little-endian system given a barectf 2 configuration having its
27 # `byte-order` trace type property set to `big-endian`.
28 #
29 # NOTE: This test does not validate that it runs on a little-endian
30 # system, but we can assume that that is the case since it is what the
31 # barectf tests currently require.
32 version: '2.2'
33 metadata:
34 type-aliases:
35 uint16:
36 class: int
37 size: 16
38 trace:
39 byte-order: big-endian
40 streams:
41 default:
42 $default: true
43 packet-context-type:
44 class: struct
45 fields:
46 packet_size: uint16
47 content_size: uint16
48 events:
49 my_event:
50 payload-type:
51 class: struct
52 fields:
53 my_field:
54 class: str
This page took 0.038439 seconds and 4 git commands to generate.