diff options
Diffstat (limited to 'testsuite/buildok/logging.stp')
-rw-r--r-- | testsuite/buildok/logging.stp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/buildok/logging.stp b/testsuite/buildok/logging.stp new file mode 100644 index 00000000..636770c7 --- /dev/null +++ b/testsuite/buildok/logging.stp @@ -0,0 +1,11 @@ +#! stap -p4 + +// build-test the logging tapset functions + +probe begin { + ftrace("ftrace") + log("log") + warn("warn") + exit() + error("error") +} |