summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/files
diff options
context:
space:
mode:
authorVictor Kamensky <kamensky@cisco.com>2018-04-03 08:25:01 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-04-18 18:57:06 +0100
commit7e03441c9f6fe714b118845642140ea1c807eac7 (patch)
treebe2c704ef83cf1c5d0cbdba858bcff6c6dd2600a /meta/lib/oeqa/runtime/files
parent5f7a0c72c5ca9715ba6c8727dae32db7659fb9f6 (diff)
downloadpoky-7e03441c9f6fe714b118845642140ea1c807eac7.tar.gz
oeqa/runtime/stap.py: add runtime test for systemtap
Add runtime test for stap to test basic SystemTap operations: can compile very basic module and run on target device. Note we disable (-DSTP_NO_VERREL_CHECK) SystemTap additional kernel release check since during OE testing mismatching kernel-devsrc and kernels are used. (From OE-Core rev: 659d19fcddb7edaca8f5221148d479e73304b430) Signed-off-by: Victor Kamensky <kamensky@cisco.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/files')
-rw-r--r--meta/lib/oeqa/runtime/files/hello.stp1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/hello.stp b/meta/lib/oeqa/runtime/files/hello.stp
new file mode 100644
index 0000000000..3677147162
--- /dev/null
+++ b/meta/lib/oeqa/runtime/files/hello.stp
@@ -0,0 +1 @@
probe oneshot { println("hello world") }