summaryrefslogtreecommitdiffstats
path: root/src/tests/keywords/return-group
blob: 92978e4918027dc1f1a86be8a24ee97ef8702555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# PRE: return
#
update {
	control:Auth-Type = 'Accept'
}

group {
	# Section should exit after this statement
	ok {
		ok = return
	}

	# This entry should never be reached
	update {
		reply:Reply-Message := 'fail'
	}
}

# We should continue processing after the previous group.
update {
	reply:Reply-Message += 'pass'	
}