From 659d19fcddb7edaca8f5221148d479e73304b430 Mon Sep 17 00:00:00 2001 From: Victor Kamensky Date: Tue, 3 Apr 2018 08:25:01 -0700 Subject: 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 Signed-off-by: Ross Burton --- meta/lib/oeqa/runtime/files/hello.stp | 1 + 1 file changed, 1 insertion(+) create mode 100644 meta/lib/oeqa/runtime/files/hello.stp (limited to 'meta/lib/oeqa/runtime/files/hello.stp') 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") } -- cgit 1.2.3-korg