├── .gitignore ├── .gitreview ├── LICENSE ├── README.adoc ├── barectf ├── __init__.py ├── argpar.py ├── cgen.py ├── cli.py ├── codegen.py ├── config.py ├── config_file.py ├── config_parse.py ├── config_parse_common.py ├── config_parse_v2.py ├── config_parse_v3.py ├── include │ ├── 2 │ │ ├── lttng-ust-log-levels.yaml │ │ ├── stdfloat.yaml │ │ ├── stdint.yaml │ │ ├── stdmisc.yaml │ │ └── trace-basic.yaml │ └── 3 │ │ ├── lttng-ust-log-levels.yaml │ │ ├── stdint.yaml │ │ ├── stdmisc.yaml │ │ └── stdreal.yaml ├── schemas │ └── config │ │ ├── 2 │ │ ├── clock-type-pre-include.yaml │ │ ├── config-min.yaml │ │ ├── config-pre-field-type-expansion.yaml │ │ ├── config-pre-include.yaml │ │ ├── config.yaml │ │ ├── dst-pre-include.yaml │ │ ├── ert-pre-include.yaml │ │ ├── field-type.yaml │ │ ├── include-prop.yaml │ │ ├── metadata-pre-include.yaml │ │ └── trace-type-pre-include.yaml │ │ ├── 3 │ │ ├── clock-type-pre-include.yaml │ │ ├── config-pre-field-type-expansion.yaml │ │ ├── config-pre-include.yaml │ │ ├── config-pre-log-level-alias-sub.yaml │ │ ├── config.yaml │ │ ├── dst-pre-include.yaml │ │ ├── ert-pre-include.yaml │ │ ├── field-type.yaml │ │ ├── include-prop.yaml │ │ ├── trace-pre-include.yaml │ │ └── trace-type-pre-include.yaml │ │ └── common │ │ └── common.yaml ├── template.py ├── templates │ ├── c │ │ ├── align-statements-comment.j2 │ │ ├── barectf.c-macros.j2 │ │ ├── barectf.c.j2 │ │ ├── barectf.h.j2 │ │ ├── bitfield.h.j2 │ │ ├── close-func-proto.j2 │ │ ├── common.j2 │ │ ├── ctx-init-func-proto.j2 │ │ ├── func-proto-params.j2 │ │ ├── open-func-proto.j2 │ │ ├── serialize-align-statements.j2 │ │ ├── serialize-write-array-statements.j2 │ │ ├── serialize-write-bit-array-statements.j2 │ │ ├── serialize-write-dst-id-statements.j2 │ │ ├── serialize-write-dynamic-array-statements.j2 │ │ ├── serialize-write-ert-id-statements.j2 │ │ ├── serialize-write-int-statements.j2 │ │ ├── serialize-write-magic-statements.j2 │ │ ├── serialize-write-packet-size-statements.j2 │ │ ├── serialize-write-real-statements.j2 │ │ ├── serialize-write-saved-int-statements.j2 │ │ ├── serialize-write-seq-num-statements.j2 │ │ ├── serialize-write-skip-save-statements.j2 │ │ ├── serialize-write-statements-comment.j2 │ │ ├── serialize-write-static-array-statements.j2 │ │ ├── serialize-write-string-statements.j2 │ │ ├── serialize-write-struct-statements.j2 │ │ ├── serialize-write-timestamp-statements.j2 │ │ ├── serialize-write-uuid-statements.j2 │ │ ├── size-align-statements.j2 │ │ ├── size-write-array-statements.j2 │ │ ├── size-write-bit-array-statements.j2 │ │ ├── size-write-dynamic-array-statements.j2 │ │ ├── size-write-static-array-statements.j2 │ │ ├── size-write-string-statements.j2 │ │ ├── size-write-struct-statements.j2 │ │ └── trace-func-proto.j2 │ ├── common.j2 │ ├── license-header-footer.j2 │ ├── license-header.j2 │ └── metadata │ │ ├── enum-ft.j2 │ │ ├── int-ft.j2 │ │ ├── metadata.j2 │ │ ├── real-ft.j2 │ │ ├── str-ft.j2 │ │ └── struct-ft.j2 ├── tsdl182gen.py ├── typing.py └── version.py ├── docs ├── antora.yml └── modules │ ├── ROOT │ ├── images │ │ ├── barectf-logo.svg │ │ └── getting-started-trace-compass.png │ ├── nav.adoc │ ├── pages │ │ ├── get-help.adoc │ │ ├── getting-started.adoc │ │ ├── index.adoc │ │ ├── install.adoc │ │ └── whats-new.adoc │ └── partials │ │ └── def-prefix-note.adoc │ ├── build │ └── pages │ │ └── index.adoc │ ├── cli │ └── pages │ │ ├── index.adoc │ │ └── usage.adoc │ ├── how-barectf-works │ ├── images │ │ ├── barectf-data-flow.svg │ │ ├── ctf-trace-all.svg │ │ └── ctf-trace.svg │ └── pages │ │ ├── ctf-primer.adoc │ │ └── index.adoc │ ├── platform │ └── pages │ │ ├── api.adoc │ │ ├── example.adoc │ │ └── index.adoc │ ├── tracing-funcs │ └── pages │ │ └── index.adoc │ └── yaml │ ├── pages │ ├── cfg-obj.adoc │ ├── clk-type-obj.adoc │ ├── common-values.adoc │ ├── dst-obj.adoc │ ├── dyn-array-ft-obj.adoc │ ├── enum-ft-obj.adoc │ ├── ert-obj.adoc │ ├── ft-obj.adoc │ ├── include.adoc │ ├── index.adoc │ ├── int-ft-obj.adoc │ ├── real-ft-obj.adoc │ ├── static-array-ft-obj.adoc │ ├── str-ft-obj.adoc │ ├── struct-ft-obj.adoc │ ├── trace-obj.adoc │ ├── trace-type-obj.adoc │ └── yaml-primer.adoc │ └── partials │ ├── array-ft-obj-gen-c-types-example.adoc │ ├── ft-obj-inherit-prop.adoc │ ├── int-ft-obj-base-props.adoc │ ├── int-ft-obj-c-types-table.adoc │ └── patching-rules-table.adoc ├── examples ├── .gitignore ├── barectf-tracepoint │ ├── .gitignore │ ├── Makefile │ ├── Makefile.barectf-linux-fs │ ├── Makefile.barectf-qemu-arm-uart │ ├── Makefile.lttng-ust │ ├── README.md │ ├── barectf-platform-qemu-arm-uart.c │ ├── barectf-platform-qemu-arm-uart.h │ ├── barectf-platform-qemu-arm-uart.ld │ ├── barectf-tracepoint-barectf-qemu-arm-uart.sh │ ├── barectf-tracepoint-linux-fs.h │ ├── barectf-tracepoint-lttng-ust.h │ ├── barectf-tracepoint-qemu-arm-uart.h │ ├── barectf-tracepoint.c │ ├── config.yaml │ ├── tp.c │ └── tp.h └── linux-fs-simple │ ├── .gitignore │ ├── Makefile │ ├── README.adoc │ ├── config.yaml │ └── linux-fs-simple.c ├── extra └── barectf-tracepoint.h ├── platforms └── linux-fs │ ├── README.adoc │ ├── barectf-platform-linux-fs.c │ └── barectf-platform-linux-fs.h ├── poetry.lock ├── pyproject.toml ├── tests ├── config │ └── yaml │ │ ├── 2 │ │ ├── configs │ │ │ ├── fail │ │ │ │ ├── clock │ │ │ │ │ ├── absolute-invalid-type.yaml │ │ │ │ │ ├── description-invalid-type.yaml │ │ │ │ │ ├── ec-invalid-type.yaml │ │ │ │ │ ├── ec-invalid.yaml │ │ │ │ │ ├── freq-0.yaml │ │ │ │ │ ├── freq-invalid-type.yaml │ │ │ │ │ ├── freq-neg.yaml │ │ │ │ │ ├── offset-cycles-invalid-type.yaml │ │ │ │ │ ├── offset-cycles-neg.yaml │ │ │ │ │ ├── offset-invalid-type.yaml │ │ │ │ │ ├── offset-seconds-invalid-type.yaml │ │ │ │ │ ├── offset-seconds-neg.yaml │ │ │ │ │ ├── offset-unknown-prop.yaml │ │ │ │ │ ├── rct-invalid-type.yaml │ │ │ │ │ ├── unknown-prop.yaml │ │ │ │ │ ├── uuid-invalid-type.yaml │ │ │ │ │ └── uuid-invalid.yaml │ │ │ │ ├── config │ │ │ │ │ ├── metadata-invalid-type.yaml │ │ │ │ │ ├── metadata-no.yaml │ │ │ │ │ ├── options-gen-default-stream-def-invalid-type.yaml │ │ │ │ │ ├── options-gen-prefix-def-invalid-type.yaml │ │ │ │ │ ├── options-invalid-type.yaml │ │ │ │ │ ├── options-unknown-prop.yaml │ │ │ │ │ ├── prefix-invalid-identifier.yaml │ │ │ │ │ ├── prefix-invalid-type.yaml │ │ │ │ │ ├── unknown-prop.yaml │ │ │ │ │ ├── version-invalid-19.yaml │ │ │ │ │ ├── version-invalid-23.yaml │ │ │ │ │ ├── version-invalid-type.yaml │ │ │ │ │ └── version-no.yaml │ │ │ │ ├── event │ │ │ │ │ ├── ct-invalid-type.yaml │ │ │ │ │ ├── ct-not-struct.yaml │ │ │ │ │ ├── ll-invalid-type.yaml │ │ │ │ │ ├── ll-non-existing.yaml │ │ │ │ │ ├── no-fields-at-all.yaml │ │ │ │ │ ├── pt-invalid-type.yaml │ │ │ │ │ ├── pt-not-struct.yaml │ │ │ │ │ └── unknown-prop.yaml │ │ │ │ ├── include │ │ │ │ │ ├── cycle.yaml │ │ │ │ │ ├── empty.inc.yaml │ │ │ │ │ ├── file-not-found-abs.yaml │ │ │ │ │ ├── file-not-found-in-array.yaml │ │ │ │ │ ├── file-not-found-recursive.yaml │ │ │ │ │ ├── file-not-found.yaml │ │ │ │ │ ├── include-not-found.inc.yaml │ │ │ │ │ ├── invalid-type.yaml │ │ │ │ │ ├── recursive-sym1.inc.yaml │ │ │ │ │ ├── recursive-sym2.inc.yaml │ │ │ │ │ ├── recursive1.inc.yaml │ │ │ │ │ ├── recursive2.inc.yaml │ │ │ │ │ └── recursive3.inc.yaml │ │ │ │ ├── metadata │ │ │ │ │ ├── clocks-invalid-type.yaml │ │ │ │ │ ├── clocks-key-invalid-identifier.yaml │ │ │ │ │ ├── default-stream-invalid-type.yaml │ │ │ │ │ ├── default-stream-stream-default-duplicate.yaml │ │ │ │ │ ├── default-stream-unknown-stream.yaml │ │ │ │ │ ├── env-invalid-type.yaml │ │ │ │ │ ├── env-key-invalid-identifier.yaml │ │ │ │ │ ├── env-value-invalid-type.yaml │ │ │ │ │ ├── ll-invalid-type.yaml │ │ │ │ │ ├── ll-value-invalid-type.yaml │ │ │ │ │ ├── multiple-streams-trace-ph-no-stream-id.yaml │ │ │ │ │ ├── streams-empty.yaml │ │ │ │ │ ├── streams-invalid-type.yaml │ │ │ │ │ ├── streams-key-invalid-identifier.yaml │ │ │ │ │ ├── streams-no.yaml │ │ │ │ │ ├── ta-invalid-type.yaml │ │ │ │ │ ├── trace-empty.yaml │ │ │ │ │ ├── trace-invalid-type.yaml │ │ │ │ │ ├── trace-no.yaml │ │ │ │ │ └── unknown-prop.yaml │ │ │ │ ├── stream │ │ │ │ │ ├── default-invalid-type.yaml │ │ │ │ │ ├── ect-invalid-type.yaml │ │ │ │ │ ├── ect-not-struct.yaml │ │ │ │ │ ├── eht-id-no-multiple-events.yaml │ │ │ │ │ ├── eht-id-not-int.yaml │ │ │ │ │ ├── eht-id-too-small.yaml │ │ │ │ │ ├── eht-id-wrong-signed.yaml │ │ │ │ │ ├── eht-invalid-type.yaml │ │ │ │ │ ├── eht-not-struct.yaml │ │ │ │ │ ├── eht-timestamp-not-int.yaml │ │ │ │ │ ├── eht-timestamp-wrong-pm.yaml │ │ │ │ │ ├── eht-timestamp-wrong-signed.yaml │ │ │ │ │ ├── events-empty.yaml │ │ │ │ │ ├── events-invalid-type.yaml │ │ │ │ │ ├── events-key-invalid-identifier.yaml │ │ │ │ │ ├── events-no.yaml │ │ │ │ │ ├── pct-cs-not-int.yaml │ │ │ │ │ ├── pct-cs-wrong-signed.yaml │ │ │ │ │ ├── pct-cs-yes-ps-no.yaml │ │ │ │ │ ├── pct-ed-not-int.yaml │ │ │ │ │ ├── pct-ed-wrong-signed.yaml │ │ │ │ │ ├── pct-invalid-type.yaml │ │ │ │ │ ├── pct-no.yaml │ │ │ │ │ ├── pct-not-struct.yaml │ │ │ │ │ ├── pct-ps-not-int.yaml │ │ │ │ │ ├── pct-ps-wrong-signed.yaml │ │ │ │ │ ├── pct-ps-yes-cs-no.yaml │ │ │ │ │ ├── pct-tb-not-int.yaml │ │ │ │ │ ├── pct-tb-te-different-clocks.yaml │ │ │ │ │ ├── pct-tb-wrong-pm.yaml │ │ │ │ │ ├── pct-tb-wrong-signed.yaml │ │ │ │ │ ├── pct-tb-yes-te-no.yaml │ │ │ │ │ ├── pct-te-not-int.yaml │ │ │ │ │ ├── pct-te-wrong-pm.yaml │ │ │ │ │ ├── pct-te-wrong-signed.yaml │ │ │ │ │ ├── pct-te-yes-tb-no.yaml │ │ │ │ │ └── unknown-prop.yaml │ │ │ │ ├── trace │ │ │ │ │ ├── bo-invalid-type.yaml │ │ │ │ │ ├── bo-invalid.yaml │ │ │ │ │ ├── bo-no.yaml │ │ │ │ │ ├── ph-magic-not-int.yaml │ │ │ │ │ ├── ph-magic-wrong-signed.yaml │ │ │ │ │ ├── ph-magic-wrong-size.yaml │ │ │ │ │ ├── ph-not-struct.yaml │ │ │ │ │ ├── ph-streamid-not-int.yaml │ │ │ │ │ ├── ph-streamid-too-small.yaml │ │ │ │ │ ├── ph-streamid-wrong-signed.yaml │ │ │ │ │ ├── ph-uuid-et-not-int.yaml │ │ │ │ │ ├── ph-uuid-et-wrong-align.yaml │ │ │ │ │ ├── ph-uuid-et-wrong-signed.yaml │ │ │ │ │ ├── ph-uuid-et-wrong-size.yaml │ │ │ │ │ ├── ph-uuid-not-array.yaml │ │ │ │ │ ├── ph-uuid-wrong-length.yaml │ │ │ │ │ ├── unknown-prop.yaml │ │ │ │ │ ├── uuid-invalid-type.yaml │ │ │ │ │ └── uuid-invalid-uuid.yaml │ │ │ │ ├── type-enum │ │ │ │ │ ├── members-el-invalid-type.yaml │ │ │ │ │ ├── members-el-member-label-invalid-type.yaml │ │ │ │ │ ├── members-el-member-unknown-prop.yaml │ │ │ │ │ ├── members-el-member-value-invalid-type.yaml │ │ │ │ │ ├── members-el-member-value-outside-range-signed.yaml │ │ │ │ │ ├── members-el-member-value-outside-range-unsigned.yaml │ │ │ │ │ ├── members-empty.yaml │ │ │ │ │ ├── members-invalid-type.yaml │ │ │ │ │ ├── members-no.yaml │ │ │ │ │ ├── members-overlap.yaml │ │ │ │ │ ├── unknown-prop.yaml │ │ │ │ │ ├── vt-invalid-type.yaml │ │ │ │ │ └── vt-no.yaml │ │ │ │ ├── type-float │ │ │ │ │ ├── align-0.yaml │ │ │ │ │ ├── align-3.yaml │ │ │ │ │ ├── align-invalid-type.yaml │ │ │ │ │ ├── bo-invalid-type.yaml │ │ │ │ │ ├── bo-invalid.yaml │ │ │ │ │ ├── size-exp-mant-wrong-sum.yaml │ │ │ │ │ ├── size-exp-no.yaml │ │ │ │ │ ├── size-invalid-type.yaml │ │ │ │ │ ├── size-mant-no.yaml │ │ │ │ │ ├── size-no.yaml │ │ │ │ │ ├── size-unknown-prop.yaml │ │ │ │ │ └── unknown-prop.yaml │ │ │ │ ├── type-int │ │ │ │ │ ├── align-0.yaml │ │ │ │ │ ├── align-3.yaml │ │ │ │ │ ├── align-invalid-type.yaml │ │ │ │ │ ├── base-invalid-type.yaml │ │ │ │ │ ├── base-invalid.yaml │ │ │ │ │ ├── bo-invalid-type.yaml │ │ │ │ │ ├── bo-invalid.yaml │ │ │ │ │ ├── pm-invalid-type.yaml │ │ │ │ │ ├── pm-property-invalid.yaml │ │ │ │ │ ├── pm-type-invalid.yaml │ │ │ │ │ ├── pm-unknown-clock.yaml │ │ │ │ │ ├── signed-invalid-type.yaml │ │ │ │ │ ├── size-0.yaml │ │ │ │ │ ├── size-65.yaml │ │ │ │ │ ├── size-invalid-type.yaml │ │ │ │ │ ├── size-no.yaml │ │ │ │ │ └── unknown-prop.yaml │ │ │ │ ├── type-string │ │ │ │ │ └── unknown-prop.yaml │ │ │ │ ├── type-struct │ │ │ │ │ ├── fields-field-invalid-identifier.yaml │ │ │ │ │ ├── fields-invalid-type.yaml │ │ │ │ │ ├── ma-0.yaml │ │ │ │ │ ├── ma-3.yaml │ │ │ │ │ ├── ma-invalid-type.yaml │ │ │ │ │ └── unknown-prop.yaml │ │ │ │ ├── type │ │ │ │ │ ├── inherit-forward.yaml │ │ │ │ │ ├── inherit-unknown.yaml │ │ │ │ │ ├── invalid-type.yaml │ │ │ │ │ └── no-class.yaml │ │ │ │ └── yaml │ │ │ │ │ └── invalid.yaml │ │ │ └── pass │ │ │ │ └── everything │ │ │ │ ├── clock.inc.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── event.inc.yaml │ │ │ │ ├── metadata.inc.yaml │ │ │ │ ├── stream.inc.yaml │ │ │ │ └── trace.inc.yaml │ │ └── test_pass_everything.py │ │ ├── 3 │ │ ├── configs │ │ │ ├── fail │ │ │ │ └── type │ │ │ │ │ ├── byte-order-no.yaml │ │ │ │ │ └── byte-order-yes-two-properties.yaml │ │ │ └── pass │ │ │ │ └── type │ │ │ │ └── byte-order-yes.yaml │ │ └── test_fail_byte_order_check.py │ │ └── conftest.py └── tracing │ ├── configs │ ├── basic-extra-pc-ft-members │ │ └── extra-pc-ft-members │ │ │ └── extra-pc-ft-members.yaml │ ├── basic │ │ ├── byte-order │ │ │ └── trace-byte-order-big-endian.yaml │ │ ├── ds │ │ │ ├── no-dst-id.yaml │ │ │ └── two-packets.yaml │ │ ├── dynamic-array │ │ │ ├── nested-5-uint8.yaml │ │ │ ├── of-double.yaml │ │ │ ├── of-static-array-of-double.yaml │ │ │ ├── of-static-array-of-str.yaml │ │ │ ├── of-static-array-of-uint8.yaml │ │ │ ├── of-str.yaml │ │ │ ├── of-uint3-middle.yaml │ │ │ ├── of-uint3.yaml │ │ │ ├── of-uint8.yaml │ │ │ └── zero-len.yaml │ │ ├── enum │ │ │ ├── senum16.yaml │ │ │ ├── senum32.yaml │ │ │ ├── senum64.yaml │ │ │ ├── senum8.yaml │ │ │ ├── uenum16.yaml │ │ │ ├── uenum32.yaml │ │ │ ├── uenum64.yaml │ │ │ └── uenum8.yaml │ │ ├── int │ │ │ ├── sint-bit-fields-wrap.yaml │ │ │ ├── sint-bit-fields.yaml │ │ │ ├── sint16.yaml │ │ │ ├── sint32.yaml │ │ │ ├── sint64.yaml │ │ │ ├── sint8.yaml │ │ │ ├── uint-bit-fields-wrap.yaml │ │ │ ├── uint-bit-fields.yaml │ │ │ ├── uint16.yaml │ │ │ ├── uint32.yaml │ │ │ ├── uint64.yaml │ │ │ └── uint8.yaml │ │ ├── real │ │ │ ├── double.yaml │ │ │ └── float.yaml │ │ ├── static-array │ │ │ ├── nested-5-uint8.yaml │ │ │ ├── of-double.yaml │ │ │ ├── of-static-array-of-double.yaml │ │ │ ├── of-static-array-of-str.yaml │ │ │ ├── of-static-array-of-uint8.yaml │ │ │ ├── of-str.yaml │ │ │ ├── of-uint3-middle.yaml │ │ │ ├── of-uint3.yaml │ │ │ ├── of-uint8.yaml │ │ │ └── zero-len.yaml │ │ ├── string │ │ │ ├── empty.yaml │ │ │ └── string.yaml │ │ └── struct │ │ │ ├── empty.yaml │ │ │ ├── five-members.yaml │ │ │ └── one-member.yaml │ ├── counter-clock │ │ ├── dst-er-features │ │ │ ├── ts-uint32.yaml │ │ │ ├── ts.yaml │ │ │ └── type-id-uint8.yaml │ │ ├── dst-packet-features │ │ │ ├── beg-end-ts-multi.yaml │ │ │ ├── beg-end-ts.yaml │ │ │ ├── beg-ts-multi.yaml │ │ │ ├── beg-ts-uint32.yaml │ │ │ ├── beg-ts.yaml │ │ │ ├── disc-er-counter-snapshot-uint8.yaml │ │ │ ├── disc-er-counter-snapshot.yaml │ │ │ ├── end-ts-multi.yaml │ │ │ ├── end-ts-uint32.yaml │ │ │ ├── end-ts.yaml │ │ │ ├── none.yaml │ │ │ ├── seq-num.yaml │ │ │ └── sizes-uint16.yaml │ │ ├── dst │ │ │ └── er-common-ctx.yaml │ │ ├── ert │ │ │ ├── ll.yaml │ │ │ ├── payload.yaml │ │ │ ├── spec-ctx-payload.yaml │ │ │ └── spec-ctx.yaml │ │ └── trace-type-features │ │ │ ├── dst-id-uint8.yaml │ │ │ ├── magic-hex.yaml │ │ │ ├── magic.yaml │ │ │ ├── none.yaml │ │ │ ├── uuid-hex.yaml │ │ │ └── uuid.yaml │ └── packet-set-buf │ │ └── packet-set-buf │ │ └── packet-set-buf.yaml │ ├── conftest.py │ ├── expect │ ├── basic-extra-pc-ft-members │ │ └── extra-pc-ft-members │ │ │ ├── extra-pc-ft-members.data.expect │ │ │ └── extra-pc-ft-members.metadata.expect │ ├── basic │ │ ├── byte-order │ │ │ ├── trace-byte-order-big-endian.data.expect │ │ │ └── trace-byte-order-big-endian.metadata.expect │ │ ├── ds │ │ │ ├── no-dst-id.data.expect │ │ │ ├── no-dst-id.metadata.expect │ │ │ ├── two-packets.data.expect │ │ │ └── two-packets.metadata.expect │ │ ├── dynamic-array │ │ │ ├── nested-5-uint8.data.expect │ │ │ ├── nested-5-uint8.metadata.expect │ │ │ ├── of-double.data.expect │ │ │ ├── of-double.metadata.expect │ │ │ ├── of-static-array-of-double.data.expect │ │ │ ├── of-static-array-of-double.metadata.expect │ │ │ ├── of-static-array-of-str.data.expect │ │ │ ├── of-static-array-of-str.metadata.expect │ │ │ ├── of-static-array-of-uint8.data.expect │ │ │ ├── of-static-array-of-uint8.metadata.expect │ │ │ ├── of-str.data.expect │ │ │ ├── of-str.metadata.expect │ │ │ ├── of-uint3-middle.data.expect │ │ │ ├── of-uint3-middle.metadata.expect │ │ │ ├── of-uint3.data.expect │ │ │ ├── of-uint3.metadata.expect │ │ │ ├── of-uint8.data.expect │ │ │ ├── of-uint8.metadata.expect │ │ │ ├── zero-len.data.expect │ │ │ └── zero-len.metadata.expect │ │ ├── enum │ │ │ ├── senum16.data.expect │ │ │ ├── senum16.metadata.expect │ │ │ ├── senum32.data.expect │ │ │ ├── senum32.metadata.expect │ │ │ ├── senum64.data.expect │ │ │ ├── senum64.metadata.expect │ │ │ ├── senum8.data.expect │ │ │ ├── senum8.metadata.expect │ │ │ ├── uenum16.data.expect │ │ │ ├── uenum16.metadata.expect │ │ │ ├── uenum32.data.expect │ │ │ ├── uenum32.metadata.expect │ │ │ ├── uenum64.data.expect │ │ │ ├── uenum64.metadata.expect │ │ │ ├── uenum8.data.expect │ │ │ └── uenum8.metadata.expect │ │ ├── int │ │ │ ├── sint-bit-fields-wrap.data.expect │ │ │ ├── sint-bit-fields-wrap.metadata.expect │ │ │ ├── sint-bit-fields.data.expect │ │ │ ├── sint-bit-fields.metadata.expect │ │ │ ├── sint16.data.expect │ │ │ ├── sint16.metadata.expect │ │ │ ├── sint32.data.expect │ │ │ ├── sint32.metadata.expect │ │ │ ├── sint64.data.expect │ │ │ ├── sint64.metadata.expect │ │ │ ├── sint8.data.expect │ │ │ ├── sint8.metadata.expect │ │ │ ├── uint-bit-fields-wrap.data.expect │ │ │ ├── uint-bit-fields-wrap.metadata.expect │ │ │ ├── uint-bit-fields.data.expect │ │ │ ├── uint-bit-fields.metadata.expect │ │ │ ├── uint16.data.expect │ │ │ ├── uint16.metadata.expect │ │ │ ├── uint32.data.expect │ │ │ ├── uint32.metadata.expect │ │ │ ├── uint64.data.expect │ │ │ ├── uint64.metadata.expect │ │ │ ├── uint8.data.expect │ │ │ └── uint8.metadata.expect │ │ ├── real │ │ │ ├── double.data.expect │ │ │ ├── double.metadata.expect │ │ │ ├── float.data.expect │ │ │ └── float.metadata.expect │ │ ├── static-array │ │ │ ├── nested-5-uint8.data.expect │ │ │ ├── nested-5-uint8.metadata.expect │ │ │ ├── of-double.data.expect │ │ │ ├── of-double.metadata.expect │ │ │ ├── of-static-array-of-double.data.expect │ │ │ ├── of-static-array-of-double.metadata.expect │ │ │ ├── of-static-array-of-str.data.expect │ │ │ ├── of-static-array-of-str.metadata.expect │ │ │ ├── of-static-array-of-uint8.data.expect │ │ │ ├── of-static-array-of-uint8.metadata.expect │ │ │ ├── of-str.data.expect │ │ │ ├── of-str.metadata.expect │ │ │ ├── of-uint3-middle.data.expect │ │ │ ├── of-uint3-middle.metadata.expect │ │ │ ├── of-uint3.data.expect │ │ │ ├── of-uint3.metadata.expect │ │ │ ├── of-uint8.data.expect │ │ │ ├── of-uint8.metadata.expect │ │ │ ├── zero-len.data.expect │ │ │ └── zero-len.metadata.expect │ │ ├── string │ │ │ ├── empty.data.expect │ │ │ ├── empty.metadata.expect │ │ │ ├── string.data.expect │ │ │ └── string.metadata.expect │ │ └── struct │ │ │ ├── empty.data.expect │ │ │ ├── empty.metadata.expect │ │ │ ├── five-members.data.expect │ │ │ ├── five-members.metadata.expect │ │ │ ├── one-member.data.expect │ │ │ └── one-member.metadata.expect │ ├── counter-clock │ │ ├── dst-er-features │ │ │ ├── ts-uint32.data.expect │ │ │ ├── ts-uint32.metadata.expect │ │ │ ├── ts.data.expect │ │ │ ├── ts.metadata.expect │ │ │ ├── type-id-uint8.data.expect │ │ │ └── type-id-uint8.metadata.expect │ │ ├── dst-packet-features │ │ │ ├── beg-end-ts-multi.data.expect │ │ │ ├── beg-end-ts-multi.metadata.expect │ │ │ ├── beg-end-ts.data.expect │ │ │ ├── beg-end-ts.metadata.expect │ │ │ ├── beg-ts-multi.data.expect │ │ │ ├── beg-ts-multi.metadata.expect │ │ │ ├── beg-ts-uint32.data.expect │ │ │ ├── beg-ts-uint32.metadata.expect │ │ │ ├── beg-ts.data.expect │ │ │ ├── beg-ts.metadata.expect │ │ │ ├── disc-er-counter-snapshot-uint8.data.expect │ │ │ ├── disc-er-counter-snapshot-uint8.metadata.expect │ │ │ ├── disc-er-counter-snapshot.data.expect │ │ │ ├── disc-er-counter-snapshot.metadata.expect │ │ │ ├── end-ts-multi.data.expect │ │ │ ├── end-ts-multi.metadata.expect │ │ │ ├── end-ts-uint32.data.expect │ │ │ ├── end-ts-uint32.metadata.expect │ │ │ ├── end-ts.data.expect │ │ │ ├── end-ts.metadata.expect │ │ │ ├── none.data.expect │ │ │ ├── none.metadata.expect │ │ │ ├── seq-num.data.expect │ │ │ ├── seq-num.metadata.expect │ │ │ ├── sizes-uint16.data.expect │ │ │ └── sizes-uint16.metadata.expect │ │ ├── dst │ │ │ ├── er-common-ctx.data.expect │ │ │ └── er-common-ctx.metadata.expect │ │ ├── ert │ │ │ ├── ll.data.expect │ │ │ ├── ll.metadata.expect │ │ │ ├── payload.data.expect │ │ │ ├── payload.metadata.expect │ │ │ ├── spec-ctx-payload.data.expect │ │ │ ├── spec-ctx-payload.metadata.expect │ │ │ ├── spec-ctx.data.expect │ │ │ └── spec-ctx.metadata.expect │ │ └── trace-type-features │ │ │ ├── dst-id-uint8.data.expect │ │ │ ├── dst-id-uint8.metadata.expect │ │ │ ├── magic-hex.data.expect │ │ │ ├── magic-hex.metadata.expect │ │ │ ├── magic.data.expect │ │ │ ├── magic.metadata.expect │ │ │ ├── none.data.expect │ │ │ ├── none.metadata.expect │ │ │ ├── uuid-hex.data.expect │ │ │ ├── uuid-hex.metadata.expect │ │ │ ├── uuid.data.expect │ │ │ └── uuid.metadata.expect │ └── packet-set-buf │ │ └── packet-set-buf │ │ ├── packet-set-buf.data.expect │ │ └── packet-set-buf.metadata.expect │ ├── src │ ├── basic-extra-pc-ft-members │ │ └── extra-pc-ft-members │ │ │ └── extra-pc-ft-members.c │ ├── basic │ │ ├── byte-order │ │ │ └── trace-byte-order-big-endian.c │ │ ├── ds │ │ │ ├── no-dst-id.c │ │ │ └── two-packets.c │ │ ├── dynamic-array │ │ │ ├── nested-5-uint8.c │ │ │ ├── of-double.c │ │ │ ├── of-static-array-of-double.c │ │ │ ├── of-static-array-of-str.c │ │ │ ├── of-static-array-of-uint8.c │ │ │ ├── of-str.c │ │ │ ├── of-uint3-middle.c │ │ │ ├── of-uint3.c │ │ │ ├── of-uint8.c │ │ │ └── zero-len.c │ │ ├── enum │ │ │ ├── senum16.c │ │ │ ├── senum32.c │ │ │ ├── senum64.c │ │ │ ├── senum8.c │ │ │ ├── uenum16.c │ │ │ ├── uenum32.c │ │ │ ├── uenum64.c │ │ │ └── uenum8.c │ │ ├── int │ │ │ ├── sint-bit-fields-wrap.c │ │ │ ├── sint-bit-fields.c │ │ │ ├── sint16.c │ │ │ ├── sint32.c │ │ │ ├── sint64.c │ │ │ ├── sint8.c │ │ │ ├── uint-bit-fields-wrap.c │ │ │ ├── uint-bit-fields.c │ │ │ ├── uint16.c │ │ │ ├── uint32.c │ │ │ ├── uint64.c │ │ │ └── uint8.c │ │ ├── real │ │ │ ├── double.c │ │ │ └── float.c │ │ ├── static-array │ │ │ ├── nested-5-uint8.c │ │ │ ├── of-double.c │ │ │ ├── of-static-array-of-double.c │ │ │ ├── of-static-array-of-str.c │ │ │ ├── of-static-array-of-uint8.c │ │ │ ├── of-str.c │ │ │ ├── of-uint3-middle.c │ │ │ ├── of-uint3.c │ │ │ ├── of-uint8.c │ │ │ └── zero-len.c │ │ ├── string │ │ │ ├── empty.c │ │ │ └── string.c │ │ └── struct │ │ │ ├── empty.c │ │ │ ├── five-members.c │ │ │ └── one-member.c │ ├── counter-clock │ │ ├── dst-er-features │ │ │ ├── ts-uint32.c │ │ │ ├── ts.c │ │ │ └── type-id-uint8.c │ │ ├── dst-packet-features │ │ │ ├── beg-end-ts-multi.c │ │ │ ├── beg-end-ts.c │ │ │ ├── beg-ts-multi.c │ │ │ ├── beg-ts-uint32.c │ │ │ ├── beg-ts.c │ │ │ ├── disc-er-counter-snapshot-uint8.c │ │ │ ├── disc-er-counter-snapshot.c │ │ │ ├── end-ts-multi.c │ │ │ ├── end-ts-uint32.c │ │ │ ├── end-ts.c │ │ │ ├── none.c │ │ │ ├── seq-num.c │ │ │ └── sizes-uint16.c │ │ ├── dst │ │ │ └── er-common-ctx.c │ │ ├── ert │ │ │ ├── ll.c │ │ │ ├── payload.c │ │ │ ├── spec-ctx-payload.c │ │ │ └── spec-ctx.c │ │ └── trace-type-features │ │ │ ├── dst-id-uint8.c │ │ │ ├── magic-hex.c │ │ │ ├── magic.c │ │ │ ├── none.c │ │ │ ├── uuid-hex.c │ │ │ └── uuid.c │ └── packet-set-buf │ │ └── packet-set-buf │ │ └── packet-set-buf.c │ └── support │ ├── basic-extra-pc-ft-members │ ├── Makefile │ ├── base.yaml │ ├── test-platform.c │ └── test-platform.h │ ├── basic │ ├── Makefile │ ├── base.yaml │ ├── test-platform.c │ └── test-platform.h │ ├── counter-clock │ ├── Makefile │ ├── base-no-features.yaml │ ├── base.yaml │ ├── test-platform.c │ └── test-platform.h │ └── packet-set-buf │ ├── Makefile │ ├── test-platform.c │ └── test-platform.h └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/.gitreview -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/README.adoc -------------------------------------------------------------------------------- /barectf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/__init__.py -------------------------------------------------------------------------------- /barectf/argpar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/argpar.py -------------------------------------------------------------------------------- /barectf/cgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/cgen.py -------------------------------------------------------------------------------- /barectf/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/cli.py -------------------------------------------------------------------------------- /barectf/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/codegen.py -------------------------------------------------------------------------------- /barectf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/config.py -------------------------------------------------------------------------------- /barectf/config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/config_file.py -------------------------------------------------------------------------------- /barectf/config_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/config_parse.py -------------------------------------------------------------------------------- /barectf/config_parse_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/config_parse_common.py -------------------------------------------------------------------------------- /barectf/config_parse_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/config_parse_v2.py -------------------------------------------------------------------------------- /barectf/config_parse_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/config_parse_v3.py -------------------------------------------------------------------------------- /barectf/include/2/lttng-ust-log-levels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/2/lttng-ust-log-levels.yaml -------------------------------------------------------------------------------- /barectf/include/2/stdfloat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/2/stdfloat.yaml -------------------------------------------------------------------------------- /barectf/include/2/stdint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/2/stdint.yaml -------------------------------------------------------------------------------- /barectf/include/2/stdmisc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/2/stdmisc.yaml -------------------------------------------------------------------------------- /barectf/include/2/trace-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/2/trace-basic.yaml -------------------------------------------------------------------------------- /barectf/include/3/lttng-ust-log-levels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/3/lttng-ust-log-levels.yaml -------------------------------------------------------------------------------- /barectf/include/3/stdint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/3/stdint.yaml -------------------------------------------------------------------------------- /barectf/include/3/stdmisc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/3/stdmisc.yaml -------------------------------------------------------------------------------- /barectf/include/3/stdreal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/include/3/stdreal.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/clock-type-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/clock-type-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/config-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/config-min.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/config-pre-field-type-expansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/config-pre-field-type-expansion.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/config-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/config-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/config.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/dst-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/dst-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/ert-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/ert-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/field-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/field-type.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/include-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/include-prop.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/metadata-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/metadata-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/2/trace-type-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/2/trace-type-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/clock-type-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/clock-type-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/config-pre-field-type-expansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/config-pre-field-type-expansion.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/config-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/config-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/config-pre-log-level-alias-sub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/config-pre-log-level-alias-sub.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/config.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/dst-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/dst-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/ert-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/ert-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/field-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/field-type.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/include-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/include-prop.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/trace-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/trace-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/3/trace-type-pre-include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/3/trace-type-pre-include.yaml -------------------------------------------------------------------------------- /barectf/schemas/config/common/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/schemas/config/common/common.yaml -------------------------------------------------------------------------------- /barectf/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/template.py -------------------------------------------------------------------------------- /barectf/templates/c/align-statements-comment.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/align-statements-comment.j2 -------------------------------------------------------------------------------- /barectf/templates/c/barectf.c-macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/barectf.c-macros.j2 -------------------------------------------------------------------------------- /barectf/templates/c/barectf.c.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/barectf.c.j2 -------------------------------------------------------------------------------- /barectf/templates/c/barectf.h.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/barectf.h.j2 -------------------------------------------------------------------------------- /barectf/templates/c/bitfield.h.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/bitfield.h.j2 -------------------------------------------------------------------------------- /barectf/templates/c/close-func-proto.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/close-func-proto.j2 -------------------------------------------------------------------------------- /barectf/templates/c/common.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/common.j2 -------------------------------------------------------------------------------- /barectf/templates/c/ctx-init-func-proto.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/ctx-init-func-proto.j2 -------------------------------------------------------------------------------- /barectf/templates/c/func-proto-params.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/func-proto-params.j2 -------------------------------------------------------------------------------- /barectf/templates/c/open-func-proto.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/open-func-proto.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-align-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-align-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-bit-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-bit-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-dst-id-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-dst-id-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-dynamic-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-dynamic-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-ert-id-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-ert-id-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-int-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-int-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-magic-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-magic-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-packet-size-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-packet-size-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-real-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-real-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-saved-int-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-saved-int-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-seq-num-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-seq-num-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-skip-save-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-skip-save-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-statements-comment.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-statements-comment.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-static-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-static-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-string-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-string-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-struct-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-struct-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-timestamp-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-timestamp-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/serialize-write-uuid-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/serialize-write-uuid-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/size-align-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/size-align-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/size-write-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/size-write-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/size-write-bit-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/size-write-bit-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/size-write-dynamic-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/size-write-dynamic-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/size-write-static-array-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/size-write-static-array-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/size-write-string-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/size-write-string-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/size-write-struct-statements.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/size-write-struct-statements.j2 -------------------------------------------------------------------------------- /barectf/templates/c/trace-func-proto.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/c/trace-func-proto.j2 -------------------------------------------------------------------------------- /barectf/templates/common.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/common.j2 -------------------------------------------------------------------------------- /barectf/templates/license-header-footer.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/license-header-footer.j2 -------------------------------------------------------------------------------- /barectf/templates/license-header.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/license-header.j2 -------------------------------------------------------------------------------- /barectf/templates/metadata/enum-ft.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/metadata/enum-ft.j2 -------------------------------------------------------------------------------- /barectf/templates/metadata/int-ft.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/metadata/int-ft.j2 -------------------------------------------------------------------------------- /barectf/templates/metadata/metadata.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/metadata/metadata.j2 -------------------------------------------------------------------------------- /barectf/templates/metadata/real-ft.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/metadata/real-ft.j2 -------------------------------------------------------------------------------- /barectf/templates/metadata/str-ft.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/metadata/str-ft.j2 -------------------------------------------------------------------------------- /barectf/templates/metadata/struct-ft.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/templates/metadata/struct-ft.j2 -------------------------------------------------------------------------------- /barectf/tsdl182gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/tsdl182gen.py -------------------------------------------------------------------------------- /barectf/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/typing.py -------------------------------------------------------------------------------- /barectf/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/barectf/version.py -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/antora.yml -------------------------------------------------------------------------------- /docs/modules/ROOT/images/barectf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/images/barectf-logo.svg -------------------------------------------------------------------------------- /docs/modules/ROOT/images/getting-started-trace-compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/images/getting-started-trace-compass.png -------------------------------------------------------------------------------- /docs/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/get-help.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/pages/get-help.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/getting-started.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/pages/getting-started.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/install.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/pages/install.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/whats-new.adoc: -------------------------------------------------------------------------------- 1 | = What's new in barectf{nbsp}{page-component-display-version}? 2 | 3 | TODO! 4 | -------------------------------------------------------------------------------- /docs/modules/ROOT/partials/def-prefix-note.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/ROOT/partials/def-prefix-note.adoc -------------------------------------------------------------------------------- /docs/modules/build/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/build/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/cli/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/cli/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/cli/pages/usage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/cli/pages/usage.adoc -------------------------------------------------------------------------------- /docs/modules/how-barectf-works/images/barectf-data-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/how-barectf-works/images/barectf-data-flow.svg -------------------------------------------------------------------------------- /docs/modules/how-barectf-works/images/ctf-trace-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/how-barectf-works/images/ctf-trace-all.svg -------------------------------------------------------------------------------- /docs/modules/how-barectf-works/images/ctf-trace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/how-barectf-works/images/ctf-trace.svg -------------------------------------------------------------------------------- /docs/modules/how-barectf-works/pages/ctf-primer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/how-barectf-works/pages/ctf-primer.adoc -------------------------------------------------------------------------------- /docs/modules/how-barectf-works/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/how-barectf-works/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/platform/pages/api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/platform/pages/api.adoc -------------------------------------------------------------------------------- /docs/modules/platform/pages/example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/platform/pages/example.adoc -------------------------------------------------------------------------------- /docs/modules/platform/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/platform/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/tracing-funcs/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/tracing-funcs/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/cfg-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/cfg-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/clk-type-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/clk-type-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/common-values.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/common-values.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/dst-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/dst-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/dyn-array-ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/dyn-array-ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/enum-ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/enum-ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/ert-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/ert-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/include.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/include.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/int-ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/int-ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/real-ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/real-ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/static-array-ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/static-array-ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/str-ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/str-ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/struct-ft-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/struct-ft-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/trace-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/trace-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/trace-type-obj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/trace-type-obj.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/pages/yaml-primer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/pages/yaml-primer.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/partials/array-ft-obj-gen-c-types-example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/partials/array-ft-obj-gen-c-types-example.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/partials/ft-obj-inherit-prop.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/partials/ft-obj-inherit-prop.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/partials/int-ft-obj-base-props.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/partials/int-ft-obj-base-props.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/partials/int-ft-obj-c-types-table.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/partials/int-ft-obj-c-types-table.adoc -------------------------------------------------------------------------------- /docs/modules/yaml/partials/patching-rules-table.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/docs/modules/yaml/partials/patching-rules-table.adoc -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/barectf-tracepoint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/.gitignore -------------------------------------------------------------------------------- /examples/barectf-tracepoint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/Makefile -------------------------------------------------------------------------------- /examples/barectf-tracepoint/Makefile.barectf-linux-fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/Makefile.barectf-linux-fs -------------------------------------------------------------------------------- /examples/barectf-tracepoint/Makefile.barectf-qemu-arm-uart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/Makefile.barectf-qemu-arm-uart -------------------------------------------------------------------------------- /examples/barectf-tracepoint/Makefile.lttng-ust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/Makefile.lttng-ust -------------------------------------------------------------------------------- /examples/barectf-tracepoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/README.md -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-platform-qemu-arm-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-platform-qemu-arm-uart.c -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-platform-qemu-arm-uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-platform-qemu-arm-uart.h -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-platform-qemu-arm-uart.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-platform-qemu-arm-uart.ld -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-tracepoint-barectf-qemu-arm-uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-tracepoint-barectf-qemu-arm-uart.sh -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-tracepoint-linux-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-tracepoint-linux-fs.h -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-tracepoint-lttng-ust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-tracepoint-lttng-ust.h -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-tracepoint-qemu-arm-uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-tracepoint-qemu-arm-uart.h -------------------------------------------------------------------------------- /examples/barectf-tracepoint/barectf-tracepoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/barectf-tracepoint.c -------------------------------------------------------------------------------- /examples/barectf-tracepoint/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/config.yaml -------------------------------------------------------------------------------- /examples/barectf-tracepoint/tp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/tp.c -------------------------------------------------------------------------------- /examples/barectf-tracepoint/tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/barectf-tracepoint/tp.h -------------------------------------------------------------------------------- /examples/linux-fs-simple/.gitignore: -------------------------------------------------------------------------------- 1 | trace 2 | linux-fs-simple 3 | -------------------------------------------------------------------------------- /examples/linux-fs-simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/linux-fs-simple/Makefile -------------------------------------------------------------------------------- /examples/linux-fs-simple/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/linux-fs-simple/README.adoc -------------------------------------------------------------------------------- /examples/linux-fs-simple/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/linux-fs-simple/config.yaml -------------------------------------------------------------------------------- /examples/linux-fs-simple/linux-fs-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/examples/linux-fs-simple/linux-fs-simple.c -------------------------------------------------------------------------------- /extra/barectf-tracepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/extra/barectf-tracepoint.h -------------------------------------------------------------------------------- /platforms/linux-fs/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/platforms/linux-fs/README.adoc -------------------------------------------------------------------------------- /platforms/linux-fs/barectf-platform-linux-fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/platforms/linux-fs/barectf-platform-linux-fs.c -------------------------------------------------------------------------------- /platforms/linux-fs/barectf-platform-linux-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/platforms/linux-fs/barectf-platform-linux-fs.h -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/absolute-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/absolute-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/description-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/description-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/ec-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/ec-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/ec-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/ec-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/freq-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/freq-0.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/freq-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/freq-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/freq-neg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/freq-neg.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/offset-cycles-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/offset-cycles-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/offset-cycles-neg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/offset-cycles-neg.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/offset-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/offset-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/offset-seconds-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/offset-seconds-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/offset-seconds-neg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/offset-seconds-neg.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/offset-unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/offset-unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/rct-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/rct-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/uuid-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/uuid-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/clock/uuid-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/clock/uuid-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/metadata-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/metadata-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/metadata-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/metadata-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/options-gen-default-stream-def-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/options-gen-default-stream-def-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/options-gen-prefix-def-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/options-gen-prefix-def-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/options-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/options-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/options-unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/options-unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/prefix-invalid-identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/prefix-invalid-identifier.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/prefix-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/prefix-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/version-invalid-19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/version-invalid-19.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/version-invalid-23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/version-invalid-23.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/version-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/version-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/config/version-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/config/version-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/ct-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/ct-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/ct-not-struct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/ct-not-struct.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/ll-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/ll-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/ll-non-existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/ll-non-existing.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/no-fields-at-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/no-fields-at-all.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/pt-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/pt-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/pt-not-struct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/pt-not-struct.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/event/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/event/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/cycle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/cycle.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/empty.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/empty.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/file-not-found-abs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/file-not-found-abs.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/file-not-found-in-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/file-not-found-in-array.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/file-not-found-recursive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/file-not-found-recursive.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/file-not-found.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/file-not-found.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/include-not-found.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/include-not-found.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/recursive-sym1.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/recursive-sym1.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/recursive-sym2.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/recursive-sym2.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/recursive1.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/recursive1.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/recursive2.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/recursive2.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/include/recursive3.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/include/recursive3.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/clocks-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/clocks-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/clocks-key-invalid-identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/clocks-key-invalid-identifier.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/default-stream-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/default-stream-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/default-stream-stream-default-duplicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/default-stream-stream-default-duplicate.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/default-stream-unknown-stream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/default-stream-unknown-stream.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/env-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/env-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/env-key-invalid-identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/env-key-invalid-identifier.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/env-value-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/env-value-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/ll-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/ll-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/ll-value-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/ll-value-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/multiple-streams-trace-ph-no-stream-id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/multiple-streams-trace-ph-no-stream-id.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/streams-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/streams-empty.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/streams-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/streams-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/streams-key-invalid-identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/streams-key-invalid-identifier.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/streams-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/streams-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/ta-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/ta-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/trace-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/trace-empty.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/trace-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/trace-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/trace-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/trace-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/metadata/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/metadata/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/default-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/default-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/ect-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/ect-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/ect-not-struct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/ect-not-struct.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-id-no-multiple-events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-id-no-multiple-events.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-id-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-id-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-id-too-small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-id-too-small.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-id-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-id-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-not-struct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-not-struct.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-timestamp-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-timestamp-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-timestamp-wrong-pm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-timestamp-wrong-pm.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/eht-timestamp-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/eht-timestamp-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/events-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/events-empty.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/events-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/events-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/events-key-invalid-identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/events-key-invalid-identifier.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/events-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/events-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-cs-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-cs-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-cs-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-cs-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-cs-yes-ps-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-cs-yes-ps-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-ed-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-ed-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-ed-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-ed-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-not-struct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-not-struct.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-ps-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-ps-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-ps-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-ps-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-ps-yes-cs-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-ps-yes-cs-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-tb-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-tb-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-tb-te-different-clocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-tb-te-different-clocks.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-tb-wrong-pm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-tb-wrong-pm.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-tb-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-tb-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-tb-yes-te-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-tb-yes-te-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-te-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-te-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-te-wrong-pm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-te-wrong-pm.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-te-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-te-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/pct-te-yes-tb-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/pct-te-yes-tb-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/stream/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/stream/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/bo-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/bo-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/bo-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/bo-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/bo-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/bo-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-magic-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-magic-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-magic-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-magic-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-magic-wrong-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-magic-wrong-size.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-not-struct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-not-struct.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-streamid-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-streamid-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-streamid-too-small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-streamid-too-small.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-streamid-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-streamid-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-uuid-et-not-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-uuid-et-not-int.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-uuid-et-wrong-align.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-uuid-et-wrong-align.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-uuid-et-wrong-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-uuid-et-wrong-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-uuid-et-wrong-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-uuid-et-wrong-size.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-uuid-not-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-uuid-not-array.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/ph-uuid-wrong-length.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/ph-uuid-wrong-length.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/uuid-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/uuid-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/trace/uuid-invalid-uuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/trace/uuid-invalid-uuid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-el-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-el-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-el-member-label-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-el-member-label-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-el-member-unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-el-member-unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-el-member-value-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-el-member-value-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-el-member-value-outside-range-signed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-el-member-value-outside-range-signed.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-el-member-value-outside-range-unsigned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-el-member-value-outside-range-unsigned.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-empty.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/members-overlap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/members-overlap.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/vt-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/vt-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-enum/vt-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-enum/vt-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/align-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/align-0.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/align-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/align-3.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/align-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/align-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/bo-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/bo-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/bo-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/bo-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/size-exp-mant-wrong-sum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/size-exp-mant-wrong-sum.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/size-exp-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/size-exp-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/size-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/size-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/size-mant-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/size-mant-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/size-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/size-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/size-unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/size-unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-float/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-float/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/align-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/align-0.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/align-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/align-3.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/align-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/align-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/base-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/base-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/base-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/base-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/bo-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/bo-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/bo-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/bo-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/pm-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/pm-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/pm-property-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/pm-property-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/pm-type-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/pm-type-invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/pm-unknown-clock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/pm-unknown-clock.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/signed-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/signed-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/size-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/size-0.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/size-65.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/size-65.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/size-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/size-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/size-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/size-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-int/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-int/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-string/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-string/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-struct/fields-field-invalid-identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-struct/fields-field-invalid-identifier.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-struct/fields-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-struct/fields-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-struct/ma-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-struct/ma-0.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-struct/ma-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-struct/ma-3.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-struct/ma-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-struct/ma-invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type-struct/unknown-prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type-struct/unknown-prop.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type/inherit-forward.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type/inherit-forward.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type/inherit-unknown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type/inherit-unknown.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type/invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type/invalid-type.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/type/no-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/type/no-class.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/fail/yaml/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/fail/yaml/invalid.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/pass/everything/clock.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/pass/everything/clock.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/pass/everything/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/pass/everything/config.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/pass/everything/event.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/pass/everything/event.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/pass/everything/metadata.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/pass/everything/metadata.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/pass/everything/stream.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/pass/everything/stream.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/configs/pass/everything/trace.inc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/configs/pass/everything/trace.inc.yaml -------------------------------------------------------------------------------- /tests/config/yaml/2/test_pass_everything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/2/test_pass_everything.py -------------------------------------------------------------------------------- /tests/config/yaml/3/configs/fail/type/byte-order-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/3/configs/fail/type/byte-order-no.yaml -------------------------------------------------------------------------------- /tests/config/yaml/3/configs/fail/type/byte-order-yes-two-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/3/configs/fail/type/byte-order-yes-two-properties.yaml -------------------------------------------------------------------------------- /tests/config/yaml/3/configs/pass/type/byte-order-yes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/3/configs/pass/type/byte-order-yes.yaml -------------------------------------------------------------------------------- /tests/config/yaml/3/test_fail_byte_order_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/3/test_fail_byte_order_check.py -------------------------------------------------------------------------------- /tests/config/yaml/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/config/yaml/conftest.py -------------------------------------------------------------------------------- /tests/tracing/configs/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/byte-order/trace-byte-order-big-endian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/byte-order/trace-byte-order-big-endian.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/ds/no-dst-id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/ds/no-dst-id.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/ds/two-packets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/ds/two-packets.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/nested-5-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/nested-5-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-double.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-double.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-static-array-of-double.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-static-array-of-double.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-static-array-of-str.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-static-array-of-str.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-static-array-of-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-static-array-of-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-str.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-str.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-uint3-middle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-uint3-middle.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-uint3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-uint3.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/of-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/of-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/dynamic-array/zero-len.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/dynamic-array/zero-len.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/senum16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/senum16.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/senum32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/senum32.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/senum64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/senum64.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/senum8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/senum8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/uenum16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/uenum16.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/uenum32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/uenum32.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/uenum64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/uenum64.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/enum/uenum8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/enum/uenum8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/sint-bit-fields-wrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/sint-bit-fields-wrap.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/sint-bit-fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/sint-bit-fields.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/sint16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/sint16.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/sint32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/sint32.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/sint64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/sint64.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/sint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/sint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/uint-bit-fields-wrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/uint-bit-fields-wrap.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/uint-bit-fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/uint-bit-fields.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/uint16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/uint16.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/uint32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/uint32.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/uint64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/uint64.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/int/uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/int/uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/real/double.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/real/double.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/real/float.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/real/float.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/nested-5-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/nested-5-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-double.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-double.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-static-array-of-double.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-static-array-of-double.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-static-array-of-str.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-static-array-of-str.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-static-array-of-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-static-array-of-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-str.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-str.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-uint3-middle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-uint3-middle.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-uint3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-uint3.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/of-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/of-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/static-array/zero-len.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/static-array/zero-len.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/string/empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/string/empty.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/string/string.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/string/string.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/struct/empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/struct/empty.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/struct/five-members.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/struct/five-members.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/basic/struct/one-member.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/basic/struct/one-member.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-er-features/ts-uint32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-er-features/ts-uint32.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-er-features/ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-er-features/ts.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-er-features/type-id-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-er-features/type-id-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/beg-end-ts-multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/beg-end-ts-multi.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/beg-end-ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/beg-end-ts.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/beg-ts-multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/beg-ts-multi.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/beg-ts-uint32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/beg-ts-uint32.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/beg-ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/beg-ts.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/disc-er-counter-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/disc-er-counter-snapshot.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/end-ts-multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/end-ts-multi.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/end-ts-uint32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/end-ts-uint32.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/end-ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/end-ts.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/none.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/seq-num.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/seq-num.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst-packet-features/sizes-uint16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst-packet-features/sizes-uint16.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/dst/er-common-ctx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/dst/er-common-ctx.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/ert/ll.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/ert/ll.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/ert/payload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/ert/payload.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/ert/spec-ctx-payload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/ert/spec-ctx-payload.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/ert/spec-ctx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/ert/spec-ctx.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/trace-type-features/dst-id-uint8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/trace-type-features/dst-id-uint8.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/trace-type-features/magic-hex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/trace-type-features/magic-hex.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/trace-type-features/magic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/trace-type-features/magic.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/trace-type-features/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/trace-type-features/none.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/trace-type-features/uuid-hex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/trace-type-features/uuid-hex.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/counter-clock/trace-type-features/uuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/counter-clock/trace-type-features/uuid.yaml -------------------------------------------------------------------------------- /tests/tracing/configs/packet-set-buf/packet-set-buf/packet-set-buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/configs/packet-set-buf/packet-set-buf/packet-set-buf.yaml -------------------------------------------------------------------------------- /tests/tracing/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/conftest.py -------------------------------------------------------------------------------- /tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/byte-order/trace-byte-order-big-endian.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/byte-order/trace-byte-order-big-endian.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/byte-order/trace-byte-order-big-endian.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/byte-order/trace-byte-order-big-endian.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/ds/no-dst-id.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/ds/no-dst-id.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/ds/no-dst-id.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/ds/no-dst-id.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/ds/two-packets.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/ds/two-packets.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/ds/two-packets.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/ds/two-packets.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/nested-5-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/nested-5-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/nested-5-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/nested-5-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-double.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-double.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-double.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-double.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-static-array-of-double.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-static-array-of-double.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-static-array-of-double.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-static-array-of-double.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-static-array-of-str.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-static-array-of-str.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-static-array-of-str.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-static-array-of-str.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-static-array-of-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-static-array-of-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-static-array-of-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-static-array-of-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-str.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-str.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-str.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-str.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-uint3-middle.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-uint3-middle.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-uint3-middle.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-uint3-middle.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-uint3.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-uint3.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-uint3.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-uint3.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/of-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/of-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/zero-len.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/zero-len.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/dynamic-array/zero-len.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/dynamic-array/zero-len.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum16.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum16.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum16.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum16.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum32.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum32.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum32.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum32.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum64.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum64.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum64.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum64.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/senum8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/senum8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum16.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum16.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum16.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum16.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum32.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum32.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum32.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum32.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum64.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum64.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum64.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum64.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/enum/uenum8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/enum/uenum8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint-bit-fields-wrap.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint-bit-fields-wrap.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint-bit-fields-wrap.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint-bit-fields-wrap.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint-bit-fields.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint-bit-fields.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint-bit-fields.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint-bit-fields.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint16.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint16.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint16.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint16.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint32.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint32.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint32.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint32.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint64.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint64.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint64.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint64.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/sint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/sint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint-bit-fields-wrap.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint-bit-fields-wrap.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint-bit-fields-wrap.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint-bit-fields-wrap.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint-bit-fields.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint-bit-fields.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint-bit-fields.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint-bit-fields.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint16.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint16.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint16.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint16.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint32.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint32.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint32.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint32.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint64.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint64.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint64.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint64.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/int/uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/int/uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/real/double.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/real/double.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/real/double.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/real/double.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/real/float.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/real/float.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/real/float.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/real/float.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/nested-5-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/nested-5-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/nested-5-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/nested-5-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-double.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-double.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-double.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-double.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-static-array-of-double.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-static-array-of-double.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-static-array-of-double.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-static-array-of-double.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-static-array-of-str.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-static-array-of-str.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-static-array-of-str.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-static-array-of-str.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-static-array-of-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-static-array-of-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-static-array-of-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-static-array-of-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-str.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-str.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-str.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-str.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-uint3-middle.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-uint3-middle.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-uint3-middle.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-uint3-middle.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-uint3.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-uint3.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-uint3.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-uint3.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/of-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/of-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/zero-len.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/zero-len.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/static-array/zero-len.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/static-array/zero-len.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/string/empty.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/string/empty.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/string/empty.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/string/empty.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/string/string.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/string/string.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/string/string.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/string/string.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/struct/empty.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/struct/empty.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/struct/empty.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/struct/empty.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/struct/five-members.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/struct/five-members.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/struct/five-members.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/struct/five-members.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/struct/one-member.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/struct/one-member.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/basic/struct/one-member.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/basic/struct/one-member.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-er-features/ts-uint32.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-er-features/ts-uint32.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-er-features/ts-uint32.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-er-features/ts-uint32.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-er-features/ts.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-er-features/ts.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-er-features/ts.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-er-features/ts.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-er-features/type-id-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-er-features/type-id-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-er-features/type-id-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-er-features/type-id-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts-multi.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts-multi.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts-multi.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts-multi.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-end-ts.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-multi.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-multi.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-multi.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-multi.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-uint32.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-uint32.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-uint32.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-ts-uint32.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-ts.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-ts.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/beg-ts.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/beg-ts.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/disc-er-counter-snapshot.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/end-ts-multi.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/end-ts-multi.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/end-ts-multi.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/end-ts-multi.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/end-ts-uint32.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/end-ts-uint32.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/end-ts-uint32.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/end-ts-uint32.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/end-ts.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/end-ts.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/end-ts.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/end-ts.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/none.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/none.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/none.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/none.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/seq-num.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/seq-num.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/seq-num.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/seq-num.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/sizes-uint16.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/sizes-uint16.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst-packet-features/sizes-uint16.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst-packet-features/sizes-uint16.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst/er-common-ctx.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst/er-common-ctx.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/dst/er-common-ctx.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/dst/er-common-ctx.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/ll.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/ll.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/ll.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/ll.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/payload.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/payload.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/payload.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/payload.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/spec-ctx-payload.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/spec-ctx-payload.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/spec-ctx-payload.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/spec-ctx-payload.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/spec-ctx.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/spec-ctx.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/ert/spec-ctx.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/ert/spec-ctx.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/dst-id-uint8.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/dst-id-uint8.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/dst-id-uint8.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/dst-id-uint8.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/magic-hex.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/magic-hex.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/magic-hex.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/magic-hex.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/magic.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/magic.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/magic.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/magic.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/none.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/none.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/none.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/none.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/uuid-hex.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/uuid-hex.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/uuid-hex.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/uuid-hex.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/uuid.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/uuid.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/counter-clock/trace-type-features/uuid.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/counter-clock/trace-type-features/uuid.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/expect/packet-set-buf/packet-set-buf/packet-set-buf.data.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/packet-set-buf/packet-set-buf/packet-set-buf.data.expect -------------------------------------------------------------------------------- /tests/tracing/expect/packet-set-buf/packet-set-buf/packet-set-buf.metadata.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/expect/packet-set-buf/packet-set-buf/packet-set-buf.metadata.expect -------------------------------------------------------------------------------- /tests/tracing/src/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/byte-order/trace-byte-order-big-endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/byte-order/trace-byte-order-big-endian.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/ds/no-dst-id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/ds/no-dst-id.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/ds/two-packets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/ds/two-packets.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/nested-5-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/nested-5-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-double.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-static-array-of-double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-static-array-of-double.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-static-array-of-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-static-array-of-str.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-static-array-of-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-static-array-of-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-str.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-uint3-middle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-uint3-middle.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-uint3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-uint3.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/of-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/of-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/dynamic-array/zero-len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/dynamic-array/zero-len.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/senum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/senum16.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/senum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/senum32.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/senum64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/senum64.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/senum8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/senum8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/uenum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/uenum16.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/uenum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/uenum32.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/uenum64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/uenum64.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/enum/uenum8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/enum/uenum8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/sint-bit-fields-wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/sint-bit-fields-wrap.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/sint-bit-fields.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/sint-bit-fields.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/sint16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/sint16.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/sint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/sint32.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/sint64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/sint64.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/sint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/sint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/uint-bit-fields-wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/uint-bit-fields-wrap.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/uint-bit-fields.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/uint-bit-fields.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/uint16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/uint16.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/uint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/uint32.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/uint64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/uint64.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/int/uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/int/uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/real/double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/real/double.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/real/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/real/float.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/nested-5-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/nested-5-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-double.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-static-array-of-double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-static-array-of-double.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-static-array-of-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-static-array-of-str.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-static-array-of-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-static-array-of-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-str.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-uint3-middle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-uint3-middle.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-uint3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-uint3.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/of-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/of-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/static-array/zero-len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/static-array/zero-len.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/string/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/string/empty.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/string/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/string/string.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/struct/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/struct/empty.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/struct/five-members.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/struct/five-members.c -------------------------------------------------------------------------------- /tests/tracing/src/basic/struct/one-member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/basic/struct/one-member.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-er-features/ts-uint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-er-features/ts-uint32.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-er-features/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-er-features/ts.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-er-features/type-id-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-er-features/type-id-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/beg-end-ts-multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/beg-end-ts-multi.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/beg-end-ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/beg-end-ts.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/beg-ts-multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/beg-ts-multi.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/beg-ts-uint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/beg-ts-uint32.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/beg-ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/beg-ts.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/disc-er-counter-snapshot-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/disc-er-counter-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/disc-er-counter-snapshot.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/end-ts-multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/end-ts-multi.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/end-ts-uint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/end-ts-uint32.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/end-ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/end-ts.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/none.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/seq-num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/seq-num.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst-packet-features/sizes-uint16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst-packet-features/sizes-uint16.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/dst/er-common-ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/dst/er-common-ctx.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/ert/ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/ert/ll.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/ert/payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/ert/payload.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/ert/spec-ctx-payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/ert/spec-ctx-payload.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/ert/spec-ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/ert/spec-ctx.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/trace-type-features/dst-id-uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/trace-type-features/dst-id-uint8.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/trace-type-features/magic-hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/trace-type-features/magic-hex.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/trace-type-features/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/trace-type-features/magic.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/trace-type-features/none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/trace-type-features/none.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/trace-type-features/uuid-hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/trace-type-features/uuid-hex.c -------------------------------------------------------------------------------- /tests/tracing/src/counter-clock/trace-type-features/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/counter-clock/trace-type-features/uuid.c -------------------------------------------------------------------------------- /tests/tracing/src/packet-set-buf/packet-set-buf/packet-set-buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/src/packet-set-buf/packet-set-buf/packet-set-buf.c -------------------------------------------------------------------------------- /tests/tracing/support/basic-extra-pc-ft-members/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic-extra-pc-ft-members/Makefile -------------------------------------------------------------------------------- /tests/tracing/support/basic-extra-pc-ft-members/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic-extra-pc-ft-members/base.yaml -------------------------------------------------------------------------------- /tests/tracing/support/basic-extra-pc-ft-members/test-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic-extra-pc-ft-members/test-platform.c -------------------------------------------------------------------------------- /tests/tracing/support/basic-extra-pc-ft-members/test-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic-extra-pc-ft-members/test-platform.h -------------------------------------------------------------------------------- /tests/tracing/support/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic/Makefile -------------------------------------------------------------------------------- /tests/tracing/support/basic/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic/base.yaml -------------------------------------------------------------------------------- /tests/tracing/support/basic/test-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic/test-platform.c -------------------------------------------------------------------------------- /tests/tracing/support/basic/test-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/basic/test-platform.h -------------------------------------------------------------------------------- /tests/tracing/support/counter-clock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/counter-clock/Makefile -------------------------------------------------------------------------------- /tests/tracing/support/counter-clock/base-no-features.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/counter-clock/base-no-features.yaml -------------------------------------------------------------------------------- /tests/tracing/support/counter-clock/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/counter-clock/base.yaml -------------------------------------------------------------------------------- /tests/tracing/support/counter-clock/test-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/counter-clock/test-platform.c -------------------------------------------------------------------------------- /tests/tracing/support/counter-clock/test-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/counter-clock/test-platform.h -------------------------------------------------------------------------------- /tests/tracing/support/packet-set-buf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/packet-set-buf/Makefile -------------------------------------------------------------------------------- /tests/tracing/support/packet-set-buf/test-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/packet-set-buf/test-platform.c -------------------------------------------------------------------------------- /tests/tracing/support/packet-set-buf/test-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tests/tracing/support/packet-set-buf/test-platform.h -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/barectf/HEAD/tox.ini --------------------------------------------------------------------------------