Blame test/anchor.awk

Packit 575503
BEGIN { RS = "" }
Packit 575503
Packit 575503
{
Packit 575503
	if (/^A/)
Packit 575503
		print "ok"
Packit 575503
	else
Packit 575503
		print "not ok"
Packit 575503
Packit 575503
	if (/B$/)
Packit 575503
		print "not ok"
Packit 575503
	else
Packit 575503
		print "ok"
Packit 575503
Packit 575503
	if (/^C/)
Packit 575503
		print "not ok"
Packit 575503
	else
Packit 575503
		print "ok"
Packit 575503
Packit 575503
	if (/D$/)
Packit 575503
		print "not ok"
Packit 575503
	else
Packit 575503
		print "ok"
Packit 575503
Packit 575503
	if (/^E/)
Packit 575503
		print "not ok"
Packit 575503
	else
Packit 575503
		print "ok"
Packit 575503
Packit 575503
	if (/F$/)
Packit 575503
		print "ok"
Packit 575503
	else
Packit 575503
		print "not ok"
Packit 575503
}