Blame test/ofmta.awk

Packit 575503
# Date: Thu, 14 Apr 2011 08:18:55 -0500
Packit 575503
# From: j.eh@mchsi.com
Packit 575503
# To: arnold@skeeve.com
Packit 575503
# Subject: CONVFMT test for the test suite
Packit 575503
# Message-ID: <20110414131855.GA1801@apollo>
Packit 575503
# 
Packit 575503
# Hi,
Packit 575503
# 
Packit 575503
# Please consider adding this to the test suite. 3.1.8 segfaults
Packit 575503
# with this.
Packit 575503
# 
Packit 575503
# Thanks,
Packit 575503
# 
Packit 575503
# John
Packit 575503
# 
Packit 575503
# 
Packit 575503
BEGIN {
Packit 575503
	i=1.2345
Packit 575503
	i=3+i
Packit 575503
	a[i]="hi"
Packit 575503
	OFMT="%.1f"
Packit 575503
	print i                       
Packit 575503
	for (x in a) print x, a[x]
Packit 575503
	print a[i]
Packit 575503
	print "--------"
Packit 575503
	CONVFMT=OFMT="%.3f"
Packit 575503
	print i                       
Packit 575503
	for (x in a) print x, a[x]
Packit 575503
	print a[i]
Packit 575503
}