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

global x1

probe begin
{
	log("systemtap starting probe");
	x1 = 41;
}

probe end
{
	log("systemtap ending probe");
	++x1;
	if (x1 != 42 ) {
		log("systemtap test failure");
	} else {
		log("systemtap test success");
	}
}