Blame test/gnuops3.awk

Packit 575503
# Mon Jan 31 09:57:30 IST 2005
Packit 575503
# test both dfa and regex matchers on \B
Packit 575503
# tests from Stepan Kasal, kasal@ucw.cz
Packit 575503
BEGIN {
Packit 575503
Packit 575503
	print ("  " ~ / \B /)	# test dfa matcher
Packit 575503
	print ("a b" ~ /\B/)
Packit 575503
	print (" b" ~ /\B/)
Packit 575503
	print ("a " ~ /\B/)
Packit 575503
Packit 575503
	a = "  "
Packit 575503
	gsub(/\B/, "x", a)	# test regex matcher
Packit 575503
	print a
Packit 575503
}