xref: /aosp_15_r20/external/one-true-awk/testdir/t.exit1 (revision 9a7741de182b2776d7b30d6355f2585c0780a51b)
1*9a7741deSElliott HughesBEGIN {
2*9a7741deSElliott Hughes	print "this is before calling myabort"
3*9a7741deSElliott Hughes	myabort(1)
4*9a7741deSElliott Hughes	print "this is after calling myabort"
5*9a7741deSElliott Hughes}
6*9a7741deSElliott Hughesfunction myabort(n) {
7*9a7741deSElliott Hughes	print "in myabort - before exit", n
8*9a7741deSElliott Hughes	exit 2
9*9a7741deSElliott Hughes	print "in myabort - after exit"
10*9a7741deSElliott Hughes}
11*9a7741deSElliott HughesEND {
12*9a7741deSElliott Hughes	print "into END"
13*9a7741deSElliott Hughes	myabort(2)
14*9a7741deSElliott Hughes	print "should not see this"
15*9a7741deSElliott Hughes}
16