f0336503b3
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/systemtap#23a9cfdc9de8427546408fabf1c95f85091d7b2c
18 lines
399 B
Bash
Executable File
18 lines
399 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
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 pass
|
|
# stap -L 'kernel.trace("sys_enter")'
|
|
stap -v --example helloworld.stp
|
|
stap -v -T 10 -p4 -e 'probe kernel.function("do_exit") {println($$vars)}'
|
|
# stap -v -T 10 -e 'probe syscall.* ? {println(argstr)}'
|
|
|
|
echo
|
|
echo RESULT: PASS
|