summaryrefslogtreecommitdiffstats
path: root/testsuite/semko/nodwf02.stp
blob: 8f82d54b43ef2259220a2b892c4b4fdbbfb92918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# Verify that --ignore-dwarf "hides" dwarf info.

stap -p2 --ignore-dwarf -e '
probe kernel.function("printk") {
	printf("%s called\n", probefunc())
	exit()
}

probe timer.sec(30) {
	exit()
}
'