91acc811a1
Tests are supposed to be executed within defined context, such as e.g. tmt --root . -c arch=x86_64 -c distro=fedora-38 -c trigger=build run ... FTR: https://tmt.readthedocs.io/en/stable/spec/plans.html#context This update sets DEBUGINFOD_URLS based on the provided distro via the ci.fmf file.
21 lines
692 B
Bash
Executable File
21 lines
692 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# runtest.sh of /tools/systemtap/Sanity/quick-smoke-test
|
|
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
rlJournalStart
|
|
rlPhaseStartTest
|
|
rlLogInfo "DEBUGINFOD_URLS=$DEBUGINFOD_URLS"
|
|
rlLogInfo "DEBUGINFOD_TIMEOUT=$DEBUGINFOD_TIMEOUT"
|
|
rlRun "rpm -qa | egrep '^(kernel|systemtap)' | sort"
|
|
rlRun "uname -r"
|
|
rlRun "stap-prep"
|
|
rlRun "stap -L 'process(\"stap\").mark(\"*\")' | grep pass"
|
|
rlRun "stap -v --example helloworld.stp"
|
|
rlRun "stap -v -T 10 -p4 -e 'probe kernel.function(\"do_exit\") {println(\$\$vars)}'"
|
|
rlRun "stap -v -T 60 -e 'probe kernel.function(\"vfs_read\"){ println(\$\$vars); exit() }'"
|
|
rlPhaseEnd
|
|
rlJournalPrintText
|
|
rlJournalEnd
|