summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/if.stp
blob: bcbafd5170b9a3c96faff30a243500e4337d0913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * if.stp
 *
 * Check the systemtap if statement works
 */

probe begin { log("systemtap starting probe") }

probe end
{
	log("systemtap ending probe")
	if (1) {
		log("systemtap test success");
	} else {
		log("systemtap test failure");
	}
	if (0) {
		log("systemtap test failure");
	} else {
		log("systemtap test success");
	}
}