summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/lttng/babeltrace2/run-ptest
diff options
context:
space:
mode:
authorAnders Wallin <wallinux@gmail.com>2020-03-05 13:06:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-06 08:19:18 +0000
commit12eac40aa67d7a85d96c2dbb5d0c91747f47acec (patch)
treeb2a66c4b7673f59c9d039f7de9a02e12ab55b6fb /meta/recipes-kernel/lttng/babeltrace2/run-ptest
parentd21783d68a4e8af31525cab5d8817751c932022a (diff)
downloadpoky-12eac40aa67d7a85d96c2dbb5d0c91747f47acec.tar.gz
babeltrace2: added first version, 2.0.1
Babeltrace 1 vs. Babeltrace 2 The Babeltrace project exists since 2010. In 2020, Babeltrace 2 was released. Babeltrace 2 is a complete rewrite of the library, Python bindings, and CLI. It is plugin based and offers much more features and potential than Babeltrace 1. Because Babeltrace 2 is still a young released project, some distributions still provide packages for the Babeltrace 1 project. Both projects can coexist on the same system as there are no common installed files. (From OE-Core rev: be52889ba5e5a2cf02f50b3f3acee8ca72ec494d) Signed-off-by: Anders Wallin <wallinux@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/lttng/babeltrace2/run-ptest')
-rwxr-xr-xmeta/recipes-kernel/lttng/babeltrace2/run-ptest9
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng/babeltrace2/run-ptest b/meta/recipes-kernel/lttng/babeltrace2/run-ptest
new file mode 100755
index 0000000000..72fe223436
--- /dev/null
+++ b/meta/recipes-kernel/lttng/babeltrace2/run-ptest
@@ -0,0 +1,9 @@
1#!/bin/sh
2# use target=recheck if you want to recheck failing tests
3[ "$target" = "" ] && target=check
4
5# Without --ignore-exit, the tap harness causes any FAILs within a
6# test plan to raise ERRORs; this is just noise.
7makeargs="LOG_DRIVER_FLAGS=--ignore-exit abs_top_srcdir=$PWD abs_top_builddir=$PWD GREP=grep SED=sed PYTHON=python3"
8
9exec make -C tests -k -s $makeargs $target 2>/dev/null