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:48:19 +0100
commit659d19fcddb7edaca8f5221148d479e73304b430 (patch)
treef155bc42328cce898094996b744c1104aaf58d90 /meta/lib/oeqa/runtime/files
parent01658c4e978182a31dc7e2cd4f525066b479c2f9 (diff)
downloadopenembedded-core-contrib-659d19fcddb7edaca8f5221148d479e73304b430.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. Signed-off-by: Victor Kamensky <kamensky@cisco.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
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") }