xref: /freebsd/contrib/one-true-awk/testdir/T.arnold (revision 23f24377b1a9ab6677f00f2302484d6658d94cab)
1*23f24377SWarner Loshecho T.arnold: test fixes by Arnold Robbins 8/18
2*23f24377SWarner Losh# for which many thanks
3*23f24377SWarner Losh
4*23f24377SWarner Loshrm -rf arnold-fixes
5*23f24377SWarner Loshtar xf arnold-fixes.tar
6*23f24377SWarner Loshcd arnold-fixes
7*23f24377SWarner Losh
8*23f24377SWarner Loshpwd
9*23f24377SWarner Losh
10*23f24377SWarner Loshawk=../../a.out
11*23f24377SWarner Loshls -l $awk
12*23f24377SWarner Losh
13*23f24377SWarner Loshfor i in *.awk
14*23f24377SWarner Loshdo
15*23f24377SWarner Losh  name=$(basename $i .awk)
16*23f24377SWarner Losh  #echo $name:
17*23f24377SWarner Losh  $awk -f $name.awk >foo.$name
18*23f24377SWarner Losh  diff $name.ok foo.$name || echo "BAD: T.arnold ($name)"
19*23f24377SWarner Loshdone
20