summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/oct.stp
blob: 255ccfe5661098ab2fc15f157a2a790f60298090 (plain)
1
2
3
4
5
6
7
8
probe begin 
{
	printf("\020\01\02\03\04\05\06\07")
	printf("\010\011\012\013\014\015\016\017")
	printf("\020\021\022\023\024\025\026\027")
	printf("\030\031\032\033\034\035\036\037")
	exit()
}