This commit is contained in:
Frank Ch. Eigler 2018-09-16 07:32:39 -04:00
parent 2bcf1a3045
commit c985571b05
2 changed files with 7 additions and 4 deletions

View File

@ -84,7 +84,7 @@
Name: systemtap
Version: 4.0
Release: 0.20180914gitfe4e14f4af16.2%{?dist}
Release: 0.20180914gitfe4e14f4af16.3%{?dist}
# for version, see also configure.ac

View File

@ -5,10 +5,13 @@ set -x
dnf debuginfo-install -y kernel
# on Fedora CI, can only assume about 1GB RAM to run these tests
stap -L 'process("stap").mark("*")' | grep -q pass
stap -L 'kernel.trace("*")' | grep -q sys_
# stap -L 'kernel.trace("sys_enter")'
stap -v --example helloworld.stp
stap -v -T 1 -e 'probe kernel.function("do_exit") {println($$vars)}'
stap -v -T 1 -e 'probe syscall.* ? {println(argstr)}'
# stap -v -T 1 -e 'probe syscall.* ? {println(argstr)}'
echo PASS
echo
echo RESULT: PASS