summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/btrace/map-unnamed.bt
blob: 1085a9d66a3dfb47d44a0fbc76da0c27b025deba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BEGIN
{
	@[8 - 1, "test"] = count();
	printf("=> Print with one element\n");
	print(@);
}

END
{
	@[7, "test"] = count();
	printf("=> Print all map:\n");
	print(@);
}