summaryrefslogtreecommitdiffstats
path: root/testsuite/semko/nodwf07.stp
blob: b48562f9494b3761098afa967b33ce0c204e07cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# This should fail until/unless we expand our blacklist to cover symbols
# in the symbol table that don't show up in dwarf.

stap -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e '
probe kernel.function("*") {
	printf("%s called\n", probefunc())
	exit()
}

probe timer.sec(15) {
	exit()
}
' >/dev/null