1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
|
2019-04-07 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): New test: range2. Needs LC_ALL=C.
* range2.awk, range2.ok: New files.
2019-03-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mbprintf5): Add a minus so that the tests
will keep going if this one fails.
2019-03-03 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Update after code changes.
2019-02-25 Arnold D. Robbins <arnold@skeeve.com>
* nsprof2.ok, profile5.ok: Updated after code changes.
2019-02-25 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXPECTED_FAIL_ZOS): New group of tests expected to
fail on ZOS.
(ZOS_FAIL): New macro set by autoconf.
2019-02-22 Eli Zaretskii <eliz@gnu.org>
* Makefile.in (EXPECTED_FAIL_MINGW):
* Makefile.am (EXPECTED_FAIL_MINGW): Remove readdir_test and
readdir_retest.
2019-02-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): New test: dbugeval3.
* dbugeval3.awk, dbugeval3.in, dbugeval3.ok: New files.
2019-02-17 Andrew J. Schorr <aschorr@telemetry-investments.com>
* timeout.awk, timeout.ok: Increase READ_TIMEOUT to 400 to increase
the scheduler margin of error from 100 ms to 200 ms to reduce the
likelihood of spurious test failures.
2019-02-15 Arnold D. Robbins <arnold@skeeve.com>
* profile11.ok: Updated after code fix.
* Makefile.am (EXTRA_DIST): Add profile12 files, new test.
* profile12.awk, profile12.in, profil12.ok: New files.
2019-02-05 Juan Manuel Guerrero <juan.guerrero@gmx.de>
* Makefile.am (EXPECTED_FAIL_DJGPP): Add randtest and symtab6
to the list.
2019-01-28 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (symtab6): Fix the test's recipe.
Update copyright year.
* symtab6.ok: Adjust to have correct content.
2019-01-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Use correct filenames for dfacheck test.
(symtab6, eofsrc1): Make tests work for out of tree builds.
* symtab6.ok, eofsrc1.ok: Update after change.
2018-01-25 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Adjust after code changes.
2018-01-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): New test: nsforloop.
* nsforloop.awk, nsforloop.ok: New files.
2018-01-23 Arnold D. Robbins <arnold@skeeve.com>
* nsprof2.ok: Adjust after code changes.
2018-01-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): New test: nsfuncrecurse.
* nsfuncrecurse.awk, nsfuncrecurse.ok: New files.
2019-01-09 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): New test: arraytype.
* arraytype.awk, arraytype.ok: New files.
2018-12-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (inetdayt, inetdayu, inetecht, inetechu): Add
leading '-' so that if it fails tests keep going.
2018-12-23 Arnold D. Robbins <arnold@skeeve.com>
* inftest.ok: Updated after code changes.
2018-12-21 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): New test: dfacheck1.
* dfacheck1.awk, dfacheck1.in, dfacheck1.ok: New files.
2018-12-12 Arnold D. Robbins <arnold@skeeve.com>
* nsprof2.awk: Add extra @namespace lines for testing.
* nsprof2.ok: Adjusted.
2018-12-06 Arnold D. Robbins <arnold@skeeve.com>
* nsprof2.awk, nsprof2.ok: Updated after code changes.
2018-11-28 Arnold D. Robbins <arnold@skeeve.com>
* profile11.ok: Updated after code change.
2018-11-27 Arnold D. Robbins <arnold@skeeve.com>
* profile11.awk: Disambiguate some comments.
* profile5.ok, profile11.ok: Updated after code change.
2018-11-26 Arnold D. Robbins <arnold@skeeve.com>
* profile5.ok: Updated after code change.
* Makefile.am (GAWK_EXT_TESTS): New test, profile11.ok. Add
to the other relevant macros.
* profile11.awk, profile11.ok: New files.
2018-11-25 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (GAWK_EXT_TESTS): Fix layout of the list.
2018-11-24 Arnold D. Robbins <arnold@skeeve.com>
* profile5.ok: Updated after code change.
2018-11-24 Arnold D. Robbins <arnold@skeeve.com>
* spacere.awk: Move setting of LC_ALL=C out to ...
* Makefile.am (spacere): ... here. Added test.
Per request from Eli Zaretskii to help porting to MinGW.
Unrelated:
* Makefile.am (EXTRA_DIST): New test: typedregex4.
* typedregex4.awk, typedregex4.ok: New files.
2018-11-11 Arnold D. Robbins <arnold@skeeve.com>
* profile10.ok: Updated after code change.
2018-10-14 Arnold D. Robbins <arnold@skeeve.com>
* profile0.ok: Updated after code change.
2018-10-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile1): Add minus to ignore errors on final
step of the recipe. Allows make to keep going.
2018-09-27 Arnold D. Robbins <arnold@skeeve.com>
* Maefile.am (EXTRA_DIST): New test: mpfrbigint2.
* mpfrbigint2.awk, mpfrbigint2.in, mpfrbigint2.ok: New files.
2018-09-21 Arnold D. Robbins <arnold@skeeve.com>
* Maefile.am (EXTRA_DIST): New test: trailbs.
* trailbs.awk, trailbs.in, trailbs.ok: New files.
2018-09-16 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in: Regenerated, using Automake 1.16.1.
2018-08-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fmtspcl): Disable test. It was causing too many
portability problems.
2018-07-31 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add assignnumfield files.
* assignnumfield.awk, assignnumfield.in, assignnumfield.ok: New files.
2018-07-31 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add arraysort2 files.
* arraysort2.awk, arraysort2.ok: New files.
2018-07-27 Arnold D. Robbins <arnold@skeeve.com>
* back89.ok, funstack.ok, gsubtst5.ok: Update after code changes.
* lintwarn.ok: Ditto.
2018-07-13 Arnold D. Robbins <arnold@skeeve.com>
* fmtspcl.awk, fmtspcl.tok, numrange.ok: Revised after code changes
in gawk.
* fix-fmtscl.awk: New file.
* Makefile.am (fmtspcl.tok): Use fix-fmtscpl.awk instead of
inline program.
2018-07-12 Arnold D. Robbins <arnold@skeeve.com>
* fmtspcl.awk: Improve the formatting, add testing of uppercase
formats, fix a bug.
* fmtspcl.tok: Adjust for code changes.
2018-06-22 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add files for numrange.
* numrange.awk, numrange.ok: New files.
2018-05-24 Arnold D. Robbins <arnold@skeeve.com>
* noeffect.awk, noeffect.ok: Updated.
2018-05-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add files for spacere.
* spacere.awk, spacere.ok: New files.
2018-05-12 Eli Zaretskii <eliz@gnu.org>
* Makefile.am (readfile): Fix a typo.
2018-05-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readfile): Use $(srcdir)/Makefile.am as the
target to read and compare against. We hope this avoids
issues with CR/LF on Windows...
2018-05-06 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (SORT): New variable, to improve consistency with
PC test suite.
(profile2): Use $(SORT) instead of literal "sort".
(msg): Use $(CMP) in message instead of literal "cmp".
Thanks to Eli Z. for the suggested changes.
2018-05-03 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXPECTED_FAIL_MINGW): Per Eli Z., remove clos1way5.
2018-04-30 Arnold D. Robbins <arnold@skeeve.com>
* readdir0.awk: Handle symbolic links in the top level
source directory. (Useful if testing for PC where the PC
test makefile wants a gawk.exe to exist.)
2018-04-24 Scott Deifik <scottd.mail@sbcglobal.net>
* Makefile.am (EXPECTED_FAIL_MINGW): Add clos1way5.
2018-04-24 Juan Manuel Guerrero <juan.guerrero@gmx.de>
* Makefile.am (EXPECTED_FAIL_DJGPP): Add mpfrsqrt.
2018-04-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXPECTED_FAIL_MINGW): Remove fmtspcl and
and add readdir_retest.
(mbprintf5): Add checks for MinGW and DJGPP along with Cygwin.
Thanks to Scott Deifik for the report.
(nlstringtest): Redirect $(CMP) output to /dev/null. Not sure
why this is necessary but it seems to be.
2018-04-22 Juan Manuel Guerrero <juan.guerrero@gmx.de>
* Makefile.am (EXPECTED_FAIL_DJGPP): Add gnuops3, gnureops,
regx8bit and sigpipe1 to the list.
2018-04-20 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readdir_retest): Use $(srcdir) to reference source
files so that out of tree builds can run make check. Thanks
to Juan Manuel Guerrero <juan.guerrero@gmx.de> for the report.
2018-04-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXPECTED_FAIL_MINGW): Add clos1way6.
(readdir, fts): Move the 'echo $@' to be the first line.
(nonfatal1): Adapt inline awk script to work with MSYS too.
(charset-tests-all): Check for MinGW or DJGPP and just run
the tests if so, otherwise check for needed locales as
previously.
2018-04-19 Arnold D. Robbins <arnold@skeeve.com>
* nonfatal1.awk, nonfatal1.ok: Change to use 1.2.3.4.5
as the host. Thanks again to Mike Burkett <vidgizmo@gmail.com>.
2018-04-18 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (NEED_TESTOUTCMP): New list of tests that need
a different cmp program.
(charasbytes): Add -v BINMODE=2.
(longwrds): Need an explicit recipe to have sort command.
2018-04-17 Arnold D. Robbins <arnold@skeeve.com>
* nonfatal1.awk, nonfatal1.ok: Add a bunch of bad characters
to the hostname so that ISPs who resove local:host don't
cause the test to time out instead of failing. Thanks to
Mike Burkett <vidgizmo@gmail.com> for the report.
Unrelated:
* Makefile.am (NEED_RE_INTERVAL): Spell the macro correctly.
(strftime): Pass -v DATECMD="$(DATE)" to match pc usage.
2018-04-14 Manuel Collado <m-collado@users.sourceforge.net>
* Makefile.am (readdir_retest): Add new test.
* readdir_retest.awk: New file.
2018-04-16 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Remove VMS stuff. It hasn't been used in years.
* Gentests.vms: Removed.
* Makefile.am (EXTRA_DIST): Remove Gentests.vms.
(regtest): Add an echo $@ and make last line start with @,
for consistency with other tests.
2018-04-12 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Add support tests that need --re-interval.
* Makefile.am (NEED_RE_INTERVAL): New list of tests.
(NEED_LOCALE_EN): Add reint2 to the list.
* gsubtst3.awk, leaddig.awk: Modified to support automating.
Unrelated: Start on being able to generate pc/Makefile.tst.
* Makfile.am (EXPECTED_FAIL_DJGPP, EXPECTED_FAIL_MINGW):
New lists of test expected to fail on the given platforms.
2018-04-11 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Add support for tests that need a specific locale.
* Makefile.am (NEED_LOCALE_C, NEED_LOCALE_EN, NEED_LOCALE_JP,
NEED_LOCALE_RU): New lists of such tests.
Unrelated:
* Makefile.am: Add printing exit status to results for many
tests that lacked it. This makes the tests more consistent
with each other and with the auto-generated tests.
2018-04-09 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (RUN_SHELL): List of tests that run a .sh file.
* Gentests: Add support for such tests.
* randtest.sh: Use $AWK, not $GAWK so it can be generated.
Unrelated:
* Makefile.am (clos1way): Use standard locale verbiage in
preparation for later automation of specialized locale tests.
2018-04-08 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (manyfiles, pid): Use echo $@ to echo test name.
(EXTRA_DIST): Remove longdbl.* files.
(TESTS_WE_ARE_NOT_DOING_YET_FIXME_ONE_DAY): Removed.
* longdbl.awk, longdbl.in, longdbl.ok: Removed.
2018-04-05 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Add support for tests needing --debug and
--non-decimal-data.
* Makefile.am (NEED_DEBUG, NEED_NONDEC): New macros.
2018-04-04 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Add support for tests needing --pretty-print.
Improve checking in the END rule.
* Makefile.am (NEED_PRETTY): New macro.
2018-04-03 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Add special support for MPFR tests, tests needing
--posix and --traditional.
* Makefile.am (NEED_MPFR): Renamed from MPFR_TESTS.
(NEED_POSIX, NEED_TRADITIONAL): New groupings. Removed related
individual recipes.
(GENTESTS_UNUSED): Updated.
* litoct.in, nonl.in: New files.
2018-04-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add files for mpfrfield.
(MPFR_TESTS): Add mpfrfield.
* mpfrfield.awk, mpfrfield.in, mpfrfield.ok: New files.
2018-03-26 Arnold D. Robbins <arnold@skeeve.com>
* fwtest3.in, mmap8k.awk, mmap8k.ok, rsstart2.in: New files.
* Makefile.am (fwtest3, mmap8k, rsstart1, rsstart2): Remove manual
recipes, they can be autogenerated.
(errno): Note that manual recipe is needed as-is.
(clean-local): Don't remove mmap8k.ok.
2018-03-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add tailrecurse.awk, tailrecurse.ok.
* tailrecurse.awk, tailrecurse.ok: New files.
2018-03-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Update copyright year.
2018-03-05 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add nlstringtest-nogettext.ok.
* (nlstringtest): Compare to nlstringtest-nogettext.ok first,
in case gawk was built without GNU gettext.
* nlstringtest-nogettext.ok: New file.
2018-02-25 Arnold D. Robbins <arnold@skeeve.com>
* 4.2.1: Release tar ball made.
2018-02-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mtchi18n): Move into locale tests.
Thanks to Kiyoshi KANAZAWA <yoi_no_myoujou@yahoo.co.jp>
for the report.
2018-02-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (uplus, mpfruplus): Add new tests.
* uplus.awk, uplus.ok, mpfruplus.ok: New files.
2018-02-05 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (MPFR_TESTS): Sort tests and use backslash
continuation to get the full list. A HUGE thank you to
Eli Zaretskii <eliz@gnu.org> for the report.
2018-02-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (AWK): Move LANGUAGE= to here instead of
having it in individual tests.
2018-01-24 John E. Malmberg <wb8tyw@qsl.net>
* lintold.awk: Minor change to allow test to run on
32 bit VAX/VMS with out a floating overflow.
2018-01-18 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pty2): Instead of sed, use simpler awk goop
to canonicalize the output from od. Thanks to Michal
Jaegermann for the tip.
* pty2.ok: Updated.
2018-01-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (charset-tests-all): Add punctuation in the message.
(charset-msg-start): Add fr_FR.UTF-8 to list of desired locales,
reformat the message.
(isarrayunset): New test.
* isarrayunset.awk, isarrayunset.ok: New files.
* pty2: Add some sed goop to canonicalize the output of od;
this works around the Mac OS X od which produces different
output, avoiding a spurious test failure.
2018-01-15 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nlstringtest): New test.
* nlstringtest.awk, nlstringtest.ok, nlstringtest.po,
fr/LC_MESSAGES/nlstringtest.mo: New files. Thanks to
Bruno Haible <bruno@clisp.org> for the test.
2018-01-04 Arnold D. Robbins <arnold@skeeve.com>
Thanks to Andrew Schorr for the basics of this test.
* Makefile.am (pty2): New test.
* pty2.awk, pty2.ok: New files.
2018-01-02 Arnold D. Robbins <arnold@skeeve.com>
Thanks to Nethox <nethox@gmail.com> for this test.
* Makefile.am (mpfrrndeval): New test.
* mpfrrndeval.awk, mpfrrndeval.ok: New files.
2017-12-28 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add numstr1 files.
* numstr1.awk, numstr1.ok: New files.
2017-11-14 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add new tests setrec0 and setrec1.
(BASIC_TESTS): Add setrec0 and setrec1.
* setrec0.awk, setrec0.in, setrec0.ok: New files.
* setrec1.awk, setrec1.ok: New files.
2017-11-10 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated after code change.
2017-10-19 Arnold D. Robbins <arnold@skeeve.com>
* 4.2.0: Release tar ball made.
2017-10-17 Arnold D. Robbins <arnold@skeeve.com>
* forcenum.awk: Convert values manually to number and then
to string and remove leading sign, to avoid C library
differences across platforms. Thanks to Corinna Vinschen
for the report.
* forcenum.ok: Adjust for above change.
2017-10-12 Arnold D. Robbins <arnold@skeeve.com>
* fork.awk: Close the file in the parent after reading it.
* fork2.awk: Ditto.
2017-10-08 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (randtest): Minor fix from Andreas for OS/2.
2017-09-14 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (nonfatal1): New rule with postprocessing to remove
the platform-specific portion of the error message.
* nonfatal1.ok: Remove the platform-specific portion of the error
message.
2017-09-12 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readdir): Add to message that test can fail on
a JFS filesystem also. Thanks to Nelson Beebe for the info
and suggestion.
2017-08-28 Arnold D. Robbins <arnold@skeeve.com>
* nonfatal1.ok: Update after code change.
2017-08-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (testext): Fix spelling of testexttmp.txt.
2017-08-21 Eli Zaretskii <eliz@gnu.org>
* Makefile.am (testext): Remove testexttmp.txt.
2017-08-16 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add aryunasgn files.
(arrdbg): Make test work on out-of-tree builds in order
to pass `make distcheck'.
2017-08-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Sort and prettify the lists of tests.
2017-08-09 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Update after code changes.
Unrelated:
* Makefile.am (aryunasgn): New test.
* aryunasgn.awk, aryunasgn.ok: New files.
2017-08-04 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Update copyright year.
2017-07-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mprintf5): Put an @ on the echo statement.
Thanks to Hermann Peifer for the report.
2017-07-28 Arnold D. Robbins <arnold@skeeve.com>
* inplace1.ok, inplace2.ok, inplace3.ok: Update after
adding license to inplace.awk.
2017-07-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nsbad_cmd, nsindirect1, nsindirect2): New tests.
* nsbad_cmd.ok, nsindirect1.awk, nsindirect1.ok, nsindirect2.awk,
nsindirect2.ok: New files.
2017-07-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nsbad): New test.
* nsbad.awk, nsbad.ok: New files.
2017-07-20 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (inplace1, inplace2, inplace3): Update to use
inplace::suffix instead of INPLACE_SUFFIX.
* inplace1.ok, inplace2.ok, inplace3.ok: Update after code
changes.
2017-07-07 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (eofsrc1): New test.
* eofsrc1a.awk, eofsrc1b.awk, eofsrc1.ok: New files.
* unterm.ok: Updated after code change.
2017-07-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nsprof2): New test.
* nsprof2.awk, nsprof2.ok: New files.
2017-06-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nsprof1): New test.
* nsprof1.awk, nsprof1.ok: New files.
2017-06-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mbprintf5): Skip this test on Cygwin.
2017-06-22 Arnold D. Robbins <arnold@skeeve.com>
* profile4.ok, profile5.ok, profile7.ok: Updated after code changes.
* profile7.awk: Added two more statements.
2017-06-18 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mbprintf5): New test.
* mbprintf5.awk, mbprintf5.in, mbprintf5.ok: New files.
2017-05-30 Arnold D. Robbins <arnold@skeeve.com>
* sourceplit.ok: Revise to match changed code.
2017-05-24 Andrew J. Schorr <aschorr@telemetry-investments.com>
* fwtest8.ok: Fix field number in error message, thanks to a bug
report from Michal Jaegermann.
2017-05-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fwtest5, fwtest6, fwtest7, fwtest8): New tests.
* fwtest5.awk, fwtest5.in, fwtest5.ok, fwtest6.awk, fwtest6.in,
fwtest6.ok, fwtest7.awk, fwtest7.in, fwtest7.ok, fwtest8.awk,
fwtest8.in, fwtest8.ok: New files.
2017-05-20 Arnold D. Robbins <arnold@skeeve.com>
* noeffect.awk, noeffect.ok: Updated after code change.
2017-05-01 Aharon Robbins <aharon.robbins@intel.com>
* Makefile.am (sourcesplit): New test.
* sourcesplit.ok: New file.
Thanks to Hermann Peifer for the report.
Unrelated:
* Makefile.am (charset-msg-start): Document that having
el_GR.iso88597 is helpful.
2017-04-16 Arnold D. Robbins <arnold@skeeve.com>
* mpfrsqrt.awk: Add `@load intdiv'.
* dumpvars.ok, id.ok, symtab6.ok, symtab8.ok: Updated.
2017-04-12 Manuel Collado <m-collado@users.sourceforge.net>
* Makefile.am (fpat6): New test.
* fpat6.awk, fpat6.in, fpat6.ok: New files.
Check for the bug reported by Ed Morton in the bug-gawk mailing list.
* patsplit.ok: Updated to the new patsplit behavior.
2017-04-12 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (memleak): New test.
* memleak.awk, memleak.ok: New files.
2017-03-27 Arnold D. Robbins <arnold@skeeve.com>
* fwtest4: Renamed from fwtest3.
* fwtest3: Renamed from fwtest2b.
* Makefile.am: Updated.
2017-03-21 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (fwtest2b): Add new test of enhanced FIELDWIDTHS syntax.
* fwtest2b.awk, fwtest2b.ok: New files.
2017-03-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (argarray): Always copy argarray.in to the local
directory as argarray.input instead of trying to figure out whether
$(srcdir) is the current directory.
* argarray.ok: Replace argarray.in with argarray.input.
2017-03-06 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (readdir_test): New test to check whether get_record
field_width parsing is working by comparing the results from the
readdir and readdir_test extensions.
(SHLIB_TESTS): Add readdir_test.
2017-02-21 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (mktime): New test.
* mktime.awk, mktime.in, mktime.ok: New files.
2017-02-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (typeof5): New test.
* typeof5.awk, typeof5.in, typeof5.ok: New files.
Thanks to Andrew Schorr for part of the tests.
2017-01-27 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (gensub3): New test.
* gensub3.awk, gensub3.in, gensub3.ok: New files.
2017-01-26 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (strftfld): New test.
* strftfld.awk, strftfld.in, strftfld.ok: New files.
2017-01-15 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (concat5): New test.
* concat5.awk, concat5.ok: New files.
Check for bug forwarded by Corinna Vinschen from Cygwin mailing list.
2016-12-05 Andrew J. Schorr <aschorr@telemetry-investments.com>
* rwarray.awk: Check that strnum is recreated correctly.
2016-11-30 Arnold D. Robbins <arnold@skeeve.com>
* rwarray.awk: Use typeof() to verify that typed regex is
created correctly upon reading.
2016-11-29 Arnold D. Robbins <arnold@skeeve.com>
* rwarray.awk: Add a typed regex into the array before
writing it out and reading it back.
2016-11-21 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add valgrind.awk to the list.
2016-11-07 Arnold D. Robbins <arnold@skeeve.com>
* valgrind.awk: New file. Based on original valgrind-scan code.
Having it in a separate file makes it easier to adjust.
Commented out several checks that just produced false positives.
Add check for invalid read and write.
* Makefile.am (valgrind-scan): Use valgrind.awk.
2016-11-04 Fabio Berton <fabio.berton@ossystems.com.br>
* arrayind1.awk: Remove "#!/usr/local/bin/awk -f" as none of the
other awk scripts in the test suite have a hashbang.
2016-10-07 Arnold D. Robbins <arnold@skeeve.com>
* mpfrmemok1.ok: Update after code change.
2016-09-09 Norihiro Tanaka <noritnk@kcn.ne.jp>
* Makefile.am (anchor): New test.
* anchor.awk, anchor.in, anchor.ok: New files.
2016-08-25 Arnold D. Robbins <arnold@skeeve.com>
* 4.1.4: Release tar ball made.
2016-08-16 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (arrdbg): New test using adump.
(ARRAYDEBUG_TESTS): New test group requiring ARRAYDEBUG compilation.
(check): Add arraydebug-tests.
(arraydebug-tests): Check $(ARRAYDEBUG_TESTS) when compiled with
ARRAYDEBUG.
* arrdbg.awk: New test using adump to check array type.
2016-08-14 Andrew J. Schorr <aschorr@telemetry-investments.com>
* intarray.awk, intarray.ok: Updated.
2016-08-03 Arnold D. Robbins <arnold@skeeve.com>
Restore typed regexp tests.
* typeof1.awk, typeof1.ok: Adjusted.
* typeof3.awk, typeof3.ok: Adjusted.
* gsubind.awk, gsubind.ok: Adjusted.
* Makefile.am (TYPED_RE_TESTS): Removed.
(dbugtypedre1, dbugtypedre2, typedregex1, typedregex2,
typedregex3): Moved back into regular tests.
2016-08-03 Arnold D. Robbins <arnold@skeeve.com>
Remove typed regexes until they can be done correctly.
* typeof1.awk, typeof1.ok: Adjusted.
* typeof3.awk, typeof3.ok: Adjusted.
* gsubind.awk, gsubind.ok: Adjusted.
* Makefile.am (TYPED_RE_TESTS): New macro to hold typed regexp tests.
(dbugtypedre1, dbugtypedre2, typedregex1, typedregex2,
typedregex3): Moved into it.
2016-08-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (ignrcas3): Adjust to check that the el_GR.xxx locale
is present. Move it to extra tests so it's not run by default.
2016-08-02 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (sortfor2): New test.
* sortfor2.awk, sortfor2.in, sortfor2.ok: New files.
Thanks Christian Schneider <software@chschneider.eu>
for the report.
Unrelated:
* Makefile.am (ignrcas3): New test.
* ignrcas3.awk, ignrcas3.ok: New files.
Based on test code from Norihiro Tanaka <noritnk@kcn.ne.jp>.
* Makefile.am (ignrcas4): New test.
* ignrcas4.awk, ignrcas4.ok: Andrew Schorr's files, renamed.
2016-07-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (status-close): New test.
* status-close.awk, status-close.ok: New files.
2015-06-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (ofmtstrnum): New test.
* ofmtstrnum.awk, ofmtstrnum.ok: New files.
2016-07-20 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Remove clos1way6.ok2.
(close1way6): Removed test, it will be autogenerated back into
the right place.
* clos1way6.awk: Use gensub on ERRNO to force the right text.
Thanks to Andrew Schorr for the suggestion.
* clos1way6.ok2: Removed.
2016-07-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (clos1way6): Add additional file to check result
against for 32 bit Solaris. Thanks to Dagobert Michelsen for
the report.
* clos1way6.ok2: New file.
2016-07-08 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (apiterm, fldterm): New tests to make sure that we
are handling unterminated field string values properly.
* apiterm.awk, apiterm.in, apiterm.ok: New files.
* fldterm.awk, fldterm.in, fldterm.ok: New files.
2016-07-06 Andrew J. Schorr <aschorr@telemetry-investments.com>
* forcenum.awk: We no longer need to force the strnum conversion,
since typeof now does this automatically.
* forcenum.ok: Change "number" to "strnum" for the numeric strings.
* rebuild.in: Change input to include a strnum.
* rebuild.ok: Update results.
2016-07-04 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (arrayind3): New test.
* arrayind3.awk, arrayind3.ok: New files.
2016-07-03 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (rebuild): New test.
* rebuild.awk, rebuild.in, rebuild.ok: New files.
2016-07-01 Arnold D. Robbins <arnold@skeeve.com>
* arrayind1.awk, arrayind1.ok: Comment out prints to stderr to
avoid buffer flushing on obscure systems.
* dumpvars.ok, symtab6.ok, symtab8.ok: Update after code changes.
2016-06-26 Andrew J. Schorr <aschorr@telemetry-investments.com>
* strnum2.ok: Fix results, since print for a strnum should not be
affected by OFMT or CONVFMT.
2016-06-22 Andrew J. Schorr <aschorr@telemetry-investments.com>
* strnum2.awk, strnum2.ok: Improve test case to show both OFMT and
CONVFMT conversions.
2016-06-20 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (strnum2): New test.
* strnum2.awk, strnum2.ok: New files.
2016-06-14 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (subback): New test.
* subback.awk, subback.in, subback.ok: New files.
Thanks to Mike Brennan for the test.
Unrelated:
* Makefile.am (FAIL_CODE1): Update the list.
2016-06-14 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (GAWK_EXT_TESTS): Add mixed1. Who knows
how long that's been broken...
* mixed1.ok: Adjust to match what the code produces.
Thanks to John E. Malmberg <wb8tyw@qsl.net> for the report.
2016-06-13 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (forcenum, ignrcas3, intarray, lintexp, lintindex,
lintint, lintlength, lintset, mpfrstrtonum, mpgforcenum, printfchar,
strtonum1): New tests.
* forcenum.awk, forcenum.ok, ignrcas3.awk, ignrcas3.ok, intarray.awk,
intarray.ok, lintexp.awk, lintexp.ok, lintindex.awk, lintindex.ok,
lintint.awk, lintint.ok, lintlength.awk, lintlength.ok, lintset.awk,
lintset.ok, mpfrstrtonum.awk, mpfrstrtonum.ok, mpgforcenum.awk,
mpgforcenum.ok, printfchar.awk, printfchar.ok, strtonum1.awk,
strtonum1.ok: New files.
2016-06-08 Arnold D. Robbins <arnold@skeeve.com>
* symtab10.awk, symtab10.in, symtab10.ok: New files.
* Makefile.am (symtab10): New test.
Thanks to Hermann Peifer for the report.
2016-06-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (hex2): New test.
* hex2.awk, hex2.in, hex2.ok: New files.
2016-05-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fsnul1): New test.
* fsnul1.awk, fsnul1.in, fsnul1.ok: New files.
2016-05-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (arrayind2): New test.
* arrayind2.awk, arrayind2.ok: New files.
Thanks to Andrew J. Schorr <aschorr@telemetry-investments.com>.
2016-05-25 Arnold D. Robbins <arnold@skeeve.com>
* arrayind1.awk: Flush writes to stderr. We hope this helps
with the MinGW version.
2016-05-12 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (arrayind1): New test.
* arrayind1.awk, arrayind1.in, arrayind1.ok: New files.
* Makefile.am (sigpipe1): New test.
* sigpipe1.awk, sigpipe1.ok: New files.
2016-04-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rscompat): New test.
* rscompat.awk, rscompat.in, rscompat.ok: New files.
2016-04-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pty1): Ignore errors.
2016-04-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pty1): Really disable test on z/OS.
2016-04-11 Arnold D. Robbins <arnold@skeeve.com>
* clos1way2.ok, clos1way3.ok, clos1way4.ok, clos1way5.ok: Update
after Eli's code changes.
* Makefile.am (pty1): Disable test on z/OS.
2016-04-08 Eli Zaretskii <eliz@gnu.org>
* clos1way2.awk:
* clos1way3.awk:
* clos1way4.awk:
* clos1way5.awk: Use "&&" instead of ";" to chain commands, so
that it works with stock MS-Windows shells as well.
* clos1way2.ok: Adjust the error message to the change in command.
2016-04-08 Arnold D. Robbins <arnold@skeeve.com>
* watchpoint1: Use $(srcdir) on input file so out-of-tree
builds can run the test suite.
2016-04-07 Arnold D. Robbins <arnold@skeeve.com>
* clos1way2.ok, clos1way3.ok, clos1way4.ok: Updated after
code changes.
2016-04-06 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (clos1way6): New test.
* clos1way6.awk, clos1way6.ok: New files.
2016-04-04 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (clos1way2, clos1way3, clos1way4, clos1way5):
New tests.
* clos1way2.awk, clos1way2.in, clos1way2.ok, clos1way3.awk,
clos1way3.ok, clos1way4.awk, clos1way4.ok, clos1way5.awk,
clos1way5.ok: New files.
* clos1way2.awk: Add call to fflush() to test it too.
* clos1way2.ok: Updated after code change.
2016-03-27 Arnold D. Robbins <arnold@skeeve.com>
* profile5.ok: Adjust after code changes.
2016-03-21 Arnold D. Robbins <arnold@skeeve.com>
* profile5.ok, profile10.awk, profile10.ok: Adjust after code changes.
2016-03-19 Arnold D. Robbins <arnold@skeeve.com>
* profile5.ok: Adjust after code changes.
* Makefile.am (profile10): New test.
* profile10.awk, profile10.ok: New files.
2016-02-21 Nelson H.F. Beebe <beebe@math.utah.edu>
* rand.ok: Updated after code change.
2016-02-18 Arnold D. Robbins <arnold@skeeve.com>
* profile2.ok, profile5.ok: Adjust after code changes.
2016-02-05 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Update after adding Yet Another Command Line Option.
2016-01-28 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add profile9.awk and profile9.ok.
2016-01-14 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (aryprm9): New test.
* aryprm9.awk, aryprm9.ok: New files.
Unrelated:
* ChangeLog: Remove spurious whitespace.
2015-12-27 Arnold D. Robbins <arnold@skeeve.com>
These came in from gawk-4.1-stable:
* Makefile.am (profile8): New test.
* profile8.awk, profile8.ok: New files.
These used to be profile8:
* Makefile.am (profile9): Renamed.
* profile9.awk, profile9.ok: Renamed files.
2015-11-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (watchpoint1): New test.
* watchpoint1.awk, watchpoint1.in, watchpoint1.ok,
watchpoint1.script: New files.
2015-10-28 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nulinsrc): New test.
* nulinsrc.awk, nulinsrc.ok: New files.
2015-10-26 Arnold D. Robbins <arnold@skeeve.com>
* id.awk: Sort the output. Helps on z/OS.
* id.ok: Adjust.
2015-10-11 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readbuf): New test.
* readbuf.awk, readbuf.ok: New files.
2015-09-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (muldimposix): New test.
* muldimposix.awk, muldimposix.ok: New files.
2015-09-18 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fpat5): New test.
* fpat5.awk, fpat5.in, fpat5.ok: New files.
2015-09-04 Arnold D. Robbins <arnold@skeeve.com>
* profile.ok: Updated after code change.
2015-08-28 Daniel Richard G. <skunk@iSKUNK.ORG>
* Makefile.am: Generate the Maketests file without
reference to its directory, because putting it directly into
srcdir can be problematic (e.g. srcdir could be read-only).
(clean-local): Renamed from "clean", as Automake already defines
"clean" and warns us as much.
2015-08-25 Arnold D. Robbins <arnold@skeeve.com>
* mbstr1.ok: Updated after code change.
* Makefile.am (mbstr2): New test.
* mbstr2.awk, mbstr2.in, mbstr2.ok: New files.
2015-06-29 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dbugeval2, typedregex3): New tests.
* dbugeval2.awk, dbugeval2.in, dbugeval2.ok: New files.
* typedregex3.awk, typedregex3.ok: New files.
Thanks to Hermann Peifer for the reports.
2015-06-28 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (typedregex2): New test.
* typedregex2.awk, typedregex2.ok: New files.
Thanks to Hermann Peifer for the report.
2015-06-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dbugtypedre1): Renamed from dbugtypedre.
(dbugtypedre2): New test.
* dbugtypedre1.awk, dbugtypedre1.in, dbugtypedre1.ok: Renamed files.
* dbugtypedre2.awk, dbugtypedre2.in, dbugtypedre2.ok: New files.
Unrelated:
* id.ok: Update after code changes.
Unrelated:
* Makefile.am (getfile, dbugtypedre1, dbugtypedre2): Fixed to
work if building out of the source tree.
Unrelated:
* dbugtypedre1.ok, typedregex1.awk, typeof1.ok, typeof3.ok:
Update after code changes.
2015-06-25 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (negtime): Fix out-of-tree test run.
Unrelated:
* Makefile.am (typeof3, typeof4): New tests.
* typeof2.awk, typeof2.ok, typeof3.awk, typeof3.ok: New files.
Unrelated:
* Makefile.am (dbugtypedre): New tests.
* dbugtypedre.awk, dbugtypedre.in, dbugtypedre.ok: New files.
2015-06-21 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (typeof2): New test.
* typeof2.awk, typeof2.ok: New files.
2015-06-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (gsubind, typedregex1, typeof1): New tests.
* gsubind.awk, gsubind.ok, typedregex1.awk, typedregex1.ok,
typeof1.awk, typeof1.ok: New files.
2015-06-17 Andrew J. Schorr <aschorr@telemetry-investments.com>
* inplace1.ok, inplace2.ok, inplace3.ok: Update line number in error
messages, since inplace.awk changed a bit.
2015-05-29 Arnold D. Robbins <arnold@skeeve.com>
* checknegtime.awk: New file.
* Makefile.am (negtime): Use checknegtime.awk to test results.
Should solve some problems with BSD and also MinGW.
2015-05-21 Arnold D. Robbins <arnold@skeeve.com>
* fts.awk: Really remove atime from the output.
This avoids spurious failures on heavily loaded systems.
* Makefile.am: Add list of needed locales to "inadequate locale
support" message.
2015-05-19 Arnold D. Robbins <arnold@skeeve.com>
* 4.1.3: Release tar ball made.
2015-05-05 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dbugeval): Wrap in test for interactive terminal
to avoid Mac OS X failure. Thanks to Nelson H.F. Beebe for
the report.
2015-05-05 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (rebrackloc): New test.
* rebrackloc.awk, rebrackloc.in, rebrackloc.ok: New files.
2015-04-29 Arnold D. Robbins <arnold@skeeve.com>
* 4.1.2: Release tar ball made.
2015-04-27 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (inpref): New test.
* inpref.awk, inpref.in, inpref.ok: New files.
2015-04-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (regexpbrack2): New test.
* regexpbrack2.awk, regexpbrack2.in, regexpbrack2.ok: New files.
Thanks to Nelson Beebe.
2015-04-16 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (shadowbuiltin): New test.
* shadowbuiltin.awk, shadowbuiltin.ok: New files.
2015-04-14 Arnold D. Robbins <arnold@skeeve.com>
* indirectbuiltin.awk: Add another test (gensub 3 args).
* indirectbuiltin.ok: Update good results.
2015-04-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (negtime): New test.
* negtime.awk, negtime.ok: New files.
2015-04-09 Arnold D. Robbins <arnold@skeeve.com>
* fts.awk: Skip atime to avoid spurious timestamp
differences. Thanks to Nelson Beebe for pointing this out.
* Makefile.am (charset-all): Group the charset tests
inside a check for locale support. Thanks to Nelson Beebe
for finally motivating me to do this.
(charset-msg-start): Update test of message some.
2015-04-08 Eli Zaretskii <eliz@gnu.org>
* Makefile.am (mpfrmemok1): Use -p- for portability and
compatibility with pc/Makefile.tst.
2015-04-02 Arnold D. Robbins <arnold@skeeve.com>
* id.ok, mpfrsqrt.awk: Update after rename of div() --> intdiv().
2015-03-31 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (indirectbuiltin): New test.
* indirectbuiltin.awk, indirectbuiltin.ok: New files.
2015-03-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Remove defvar test and reference to files; test
code moved into extension/testext.c.
* defvar.awk, defvar.ok: Removed.
* testext.ok: Updated.
2015-03-24 Arnold D. Robbins <arnold@skeeve.com>
* id.ok: Update after fixes in code.
2015-03-24 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add exitval3.awk and exitval3.ok.
(BASIC_TESTS): Add new test exitval3.
* exitval3.awk, exitval3.ok: New files.
2015-03-17 Andrew J. Schorr <aschorr@telemetry-investments.com>
* inplace1.ok, inplace2.ok, inplace3.ok: Update error message line
numbers to reflect changes to inplace.awk.
2015-03-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mpfrmemok1): New test.
* mpfrmemok1.awk, mpfrmemok1.ok: New files.
2015-03-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fpat4): New test.
* fpat4.awk, fpat4.ok: New files.
2015-03-08 Arnold D. Robbins <arnold@skeeve.com>
* nonfatal3.awk, nonfatal3.ok: Adjust for portability.
Thanks to Hermann Peifer for the report.
2015-03-06 Arnold D. Robbins <arnold@skeeve.com>
* charasbytes.awk, ofs1.awk, range1.awk, sortglos.awk,
sortglos.in: Remove execute permission.
2015-03-02 Andrew J. Schorr <aschorr@telemetry-investments.com>
* nonfatal1.awk: Do not print ERRNO, since the value appears to be
platform-dependent. Instead, print (ERRNO != "").
* nonfatal1.ok: Update.
2015-02-28 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add nonfatal3.{awk,ok}.
(GAWK_EXT_TESTS): Add nonfatal3.
* nonfatal1.awk: Replace "ti10/357" with "local:host/25", since
"local:host" should be a universally bad hostname due to the
invalid ":" character.
* nonfatal1.ok: Update.
* nonfatal3.{awk,ok}: New test for connecting to a TCP port where
nobody is listening.
2015-02-27 Arnold D. Robbins <arnold@skeeve.com>
* nonfatal1.ok: Update after code changes.
* id.ok: Updated after code change.
2015-02-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add profile0.in which got forgotten
earlier. Ooops.
2015-02-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (crlf): New test.
* crlf.awk, crlf.ok: New files.
2015-02-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile0): New test.
* profile0.awk, profile0.in, profile0.ok: New files.
2015-02-08 Arnold D. Robbins <arnold@skeeve.com>
* nonfatal1.awk, nonfatal2.awk: String is now "NONFATAL".
2015-02-06 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nonfatal1, nonfatal2): New tests.
* nonfatal1.awk, nonfatal1.ok: New files.
* nonfatal2.awk, nonfatal2.ok: New files.
2015-02-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (paramasfunc1, paramasfunc2): Now need --posix.
* indirectcall.awk: Restore after code change.
2015-01-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (callparam, paramasfunc1, paramasfunc2): New tests.
* callparam.awk, callparam.ok: New files.
* paramasfunc1.awk, paramasfunc1.ok: New files.
* paramasfunc2.awk, paramasfunc2.ok: New files.
* exit.sh, indirectcall.awk: Update after code change.
2015-01-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile8): Actually add the test and the files.
Thanks to Hermann Peifer for the report.
2015-01-16 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile8): New test.
* profile8.awk, profile8.ok: New files.
2015-01-14 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dumpvars): Grep out ENVIRON and PROCINFO since
those can be different depending on who runs the test.
* dumpvars.ok, id.ok: Updated after code changes.
2015-01-07 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (regexpbrack): New test.
* regexpbrack.awk, regexpbrack.in, regexpbrack.ok: New files.
Unrelated:
* Makefile.am (printfbad4): New test.
* printfbad4.awk, printfbad4.ok: New files.
Unrelated:
* testext.ok: Adjust for code changes.
2015-01-06 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add defvar.awk and defvar.ok.
(SHLIB_TESTS): Add defvar.
(defvar): New test.
* defvar.awk, defvar.ok: New files.
2015-01-05 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add getfile.awk and getfile.ok.
(SHLIB_TESTS): Add getfile.
(getfile): New test.
* getfile.awk, getfile.ok: New files.
2015-01-05 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add timeout.awk and timeout.ok.
(BASIC_TESTS): Remove errno.
(GAWK_EXT_TESTS): Add errno and timeout.
* timeout.awk, timeout.ok: New files.
2015-01-05 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add errno.awk, errno.in, and errno.ok.
(BASIC_TESTS): Add errno.
(errno): New test.
* errno.awk, errno.in, errno.ok: New files.
2014-12-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (badbuild): New test.
* badbuild.awk, badbuild.in, badbuild.ok: New files.
2014-12-24 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (check): If tests don't pass, run 'make diffout'
and exit 1. Should help distros to notice when they have built
gawk incorrectly. (Can you say "Fedora", boys and girls?)
2014-12-12 Arnold D. Robbins <arnold@skeeve.com>
* profile5.ok: Updated after code changes.
2014-11-26 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Fix gensub call after adding warning.
2014-11-26 Arnold D. Robbins <arnold@skeeve.com>
* gensub2.ok: Update after code changes.
2014-11-16 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (sortglos): New test.
* sortglos.awk, sortglos.in, sortglos.ok: New files.
Thanks to Antonio Columbo.
2014-11-09 Arnold D. Robbins <arnold@skeeve.com>
* mbprintf4.awk: Add record and line number for debugging.
* mpprint4.ok: Adjust.
2014-11-06 Andrew J. Schorr <aschorr@telemetry-investments.com>
* testext.ok: Add results from new test_get_file test.
2014-11-02 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile7): New test.
(profile6): Add missing @ in front of gawk run.
* profile7.awk, profile7.ok: New files.
2014-11-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile6): Actually run profiling. Should make test
output consistent with what's in master.
* profile6.ok: Updated.
2014-10-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile6): New test.
* profile6.awk, profile6.ok: New files.
2014-10-17 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (profile1, testext): Use explicit ./foo.awk to avoid
assumptions about AWKPATH in the environment.
2014-10-12 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (charset-msg-start): Add a list of needed locales.
Suggested by Shaun Jackman <sjackman@gmail.com>.
2014-10-05 Arnold D. Robbins <arnold@skeeve.com>
* profile2.ok, profile3.ok, profile4.ok, profile5.ok:
Adjusted after minor code change. Again.
2014-10-04 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (genpot): New test.
* genpot.awk, genpot.ok: New files.
2014-09-29 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Adjusted after minor code change.
2014-09-27 Arnold D. Robbins <arnold@skeeve.com>
* profile2.ok, profile3.ok, profile4.ok, profile5.ok:
Adjusted after minor code change.
2014-09-18 Arnold D. Robbins <arnold@skeeve.com>
* filefuncs.awk: Change to build directory instead of "..".
* Makefile.am (filefuncs): Pass in $(abs_top_builddir).
2014-09-13 Stephen Davies <sdavies@sdc.com.au>
* Makefile.am (profile4, profile5): Changes processing to not delete
the first two lines. This is no longer needed.
* profile4.ok, profile5.ok: Changed to suit new rules and comments.
2014-09-10 Arnold D. Robbins <arnold@skeeve.com>
* profile2.ok, profile4.ok, profile5.ok: Update for new code.
2014-09-05 Arnold D. Robbins <arnold@skeeve.com>
* functab4.awk: Changed to use stat instead of chdir since
/tmp isn't /tmp on all systems (e.g. Mac OS X). Thanks to
Hermann Peifer for the report.
Sort of related:
* indirectcall2.awk, indirectcall2.ok: New files.
* id.ok: Updated.
2014-09-04 Arnold D. Robbins <arnold@skeeve.com>
* profile2.ok: Update after code improvement in profiler.
* functab4.ok: Update after making indirect calls of
extension functions work. :-)
2014-08-15 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Adjust after revising text for -L option.
2014-08-12 Arnold D. Robbins <arnold@skeeve.com>
* ofs1.ok: Updated to match corrected behavior in gawk.
2014-08-05 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mpfrsqrt): New test.
* mpfrsqrt.awk, mpfrsqrt.ok: New files.
Test from Katie Wasserman <katie@wass.net>.
2014-07-25 Arnold D. Robbins <arnold@skeeve.com>
* printhuge.awk: Add a newline to output.
* printhuge.ok: Adjust.
2014-07-24 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Adjust after correctly alphabetizing options.
2014-07-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (printhuge): New test.
* printhuge.awk, printhuge.ok: New files.
Test from mail.green.fox@gmail.com.
2014-06-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile1, profile4, profile5): Adjust for change to
--pretty-print option.
2014-06-19 Michael Forney <forney@google.com>
* Makefile.am (poundbang): Fix relative path of AWKPROG.
2014-06-08 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dbugeval): Add leading @ to recipe. Ooops.
2014-05-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (regnul1, regnul2): New tests.
* regnul1.awk, regnul1.ok, regnul1.awk, regnul2.ok: New files.
2014-05-22 Andrew J. Schorr <aschorr@telemetry-investments.com>
* lintwarn.ok: Updated.
2014-05-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Forgot dbugeval.ok. Ooops.
2014-05-11 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dbugeval): New test.
* dbugeval.in, dbugeval.ok: New files.
2014-05-10 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (rsglstdin): New test.
* rsglstdin.ok: New file.
2014-05-09 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (rebuf): Force buffer size to 4096 via AWKBUFSIZE
environment variable.
(rsgetline): New test.
* rsgetline.awk, rsgetline.in, rsgetline.ok: New files.
2014-04-11 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (charset-msg-start): Add a warning message that tests
may fail without adequate locale support, per request from
Nelson H.F. Beebe.
2014-04-08 Arnold D. Robbins <arnold@skeeve.com>
* 4.1.1: Release tar ball made.
2014-04-04 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Prettify list of tests a little bit.
2014-04-03 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add readfile2.ok. Oops.
2014-03-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readfile2): New test.
* readfile2.awk, readfile2.ok: New files.
2014-02-28 Arnold D. Robbins <arnold@skeeve.com>
* regrange.ok: Update after code improvements.
2014-02-03 Stepan Kasal <kasal@ucw.cz>
* strftime.awk: the default format uses %e, not %d (Introduced on
2014-01-16; the previous code mangled the output of command "date"
to match %d.) Remove the "mucking" for cygwin, it's obsolete and
incompatible with %e.
2014-01-28 Eli Zaretskii <eliz@gnu.org>
* strftime.awk: If DATECMD variable is non-empty, use it instead
of the literal "date" as the 'date'-like command.
2014-01-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mpfrnegzero): New test.
* mpfrnegzero.awk, mpfrnegzero.ok: New files.
2014-01-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readdir): Run ls commands outside the awk script.
* readdir0.awk: Read ls results from files. Helps with MinGW.
Thanks to Eli Zaretskii for the problem report.
2014-01-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Quote instances of $(top_srcdir) also.
2014-01-16 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (strftime): Remove comment about the race condition, since
this should be fixed. And gawk now calls date inside the script.
* strftime.awk: Based on an idea from Pat Rankin, fix the race
condition by looping repeatedly over strftime/date/strftime until
the before and after strftime results match. That should fix
the race condition where the seconds field might increment between
invocations.
2014-01-14 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (split_after_fpat): New test.
* split_after_fpat.awk, split_after_fpat.ok,
split_after_fpat.in: New files.
2013-12-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (ignrcas2): Change to use en_US.UTF-8; it
seems that plain en_US doesn't exist anymore. Thanks to
Richard Palo.
2013-12-29 John E. Malmberg <wb8tyw@qsl.net>
* fts.awk: Adjust for VMS.
* rwarray.awk: Adjust for VMS.
2013-12-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Remove instances of "" that were incorrect.
Thanks to Scott Deifik for the report.
2013-12-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fts): Add a check for Cygwin on NFS and print
a message, similar to that of IRIX. Per Corinna Vinschen.
2013-11-29 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pipeio3): Removed test and reference to files.
It was too ful of race conditions to work reliably everywhere.
* pipeio3.awk, pipeio3.ok, pipeio3.ok2: Removed.
2013-11-28 Arnold D. Robbins <arnold@skeeve.com>
* readdir0.awk: Take argument which is directory to read.
* Makefile.am (readdir): Pass $(top_srcdir) to readdir0.awk.
2013-11-27 Andrew J. Schorr <aschorr@telemetry-investments.com>
* readdir0.awk: Restore fix so that we do not fail on filesysystems
such as XFS where the dirent does not contain the file type.
2013-11-27 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (ordchr2): Use --load instead of -l to make sure the
long option works properly. Note that the readfile test still uses
the short version.
(include2): Use --include instead of -i to make sure that the long
option works properly. Note that many other tests use the -i short
version.
2013-11-20 Arnold D. Robbins <arnold@skeeve.com>
* readdir0.awk: Use `ls -lan' to get numeric user and group ID
numbers. This keeps the number of fields correct and consistent, even
on systems (like, oh, say, Windows with Cygwin) where group names
can contain spaces.
2013-11-07 Arnold D. Robbins <arnold@skeeve.com>
Solaris fixes.
* readdir0.awk: Run ls -afi and ls -la separately since POSIX
says that -f turns off -l. Thanks to Dagobert Michelsen
<dam@opencsw.org> for the report.
* Makefile.am (diffout): Don't use POSIX or bash-isms so that
it will work on Solaris. Sigh.
2013-11-03 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (backsmalls2): New test.
(pipeio3): Check results against pipeio3.ok2 if
the first check fails.
* backsmalls2.awk, backsmalls2.ok: New files.
* pipeio3.ok2: New file. This is the results on PPC Mac OS X.
2013-10-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pipeio3): Enhance test, again, to be more resilient
to variations in error messages produced by different Bourne shells
when a command is not found. This time for Cygwin.
Unrelated:
(charasbytes): Translit any tabs to spaces. Should help on
some System V systems such as Solaris. We hope.
Unrelated:
(pass-fail): Exit non-zero if tests fail. Useful for buildbots.
2013-10-22 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pipeio3): Enhance test to be more resilient to
variations in error messages produced by different Bourne shells
when a command is not found. Initially for Mac OS X.
2013-10-17 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pipeio3): New test.
* pipeio3.awk, pipeio3.ok: New files.
2013-10-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (backbigs1, backsmalls1): New tests.
* backbigs1.awk, backbigs1.in, backbigs1.ok: New files.
* backsmalls1.awk, backsmalls1.in, backsmalls1.ok: New files.
2013-10-09 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (badassign1): New test.
* badassign1.awk, badassign1.ok: New files.
2013-09-25 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (randtest): New test.
* randtest.sh, randtest.ok: New files.
* rand.ok: Updated to reflect new results based on code change.
2013-09-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Fix quoting for generation of Maketests file so
that it will happen correctly.
Unrelated:
* Makefile.am (nfloop): New test.
* nfloop.awk, nfloop.ok: New files.
2013-08-15 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Quote $(srcdir) everywhere so that tests can run
in locations with spaces in their names (think Windows or Mac OS X).
* Gentests: Ditto for when creating Maketests file.
2013-07-30 Arnold D. Robbins <arnold@skeeve.com>
* profile2.ok, profile5.ok: Update.
2013-07-04 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mbprintf4): New test.
* mbprintf4.awk, mbprintf4.in, mbprintf4.ok: New files.
Test cases from Nethox <nethox@gmail.com>.
2013-06-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dfamb1): New test.
* dfamb1.awk, dfamb1.in, dfamb1.ok: New files.
Test case from Steven Daniels <stevendaniels88@gmail.com>.
2013-06-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (clos1way): Move to here since Maketests gets
regenerated whenever Makefile.am is touched.
2013-06-22 Eli Zaretskii <eliz@gnu.org>
* Maketests (clos1way): Set LC_ALL=C, since clos1way.awk no longer
does.
2013-06-03 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (exit2): New test.
* exit2.awk, exit2.ok: New files.
2013-06-01 Eli Zaretskii <eliz@gnu.org>
* clos1way.awk: Don't use features of POSIX shells, to allow this
test to work on Windows.
* beginfile2.sh: Leave one blank between the left quote and the
following slash. Use non-absolute name for a non-existent file.
This is to avoid breakage on Windows due to MSYS transformation of
POSIX style /foo/bar absolute file names.
* beginfile2.ok: Adapt to changes in beginfile2.sh.
2013-05-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile4, profile5): New tests.
* profile4.awk, profile4.in, profile5.awk, profile5.in: New files.
2013-05-20 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mpfr-tests, shlib-tests): Propagate Eli's changes
and comment of 2013-05-14 to here, so that they get passed into
Makefile.in whenever Makefile.am is modified.
2013-05-14 Eli Zaretskii <eliz@gnu.org>
* Makefile.in (mpfr-tests, shlib-tests): Add a blank character
between ' and /FOO/ in Gawk command lines, for the benefit of
testing under MSYS Bash.
* filefuncs.awk (BEGIN): Call 'stat' on gawkapi.o, not on gawk,
which does not exist on systems that produce gawk.exe.
2013-05-09 Arnold D. Robbins <arnold@skeeve.com>
* 4.1.0: Release tar ball made.
2013-05-02 Arnold D. Robbins <arnold@skeeve.com>
* symtab9.awk: Don't remove test file in END rule, breaks on Windows.
* Makefile.am (symtab9): Add explicit rule and remove test file file.
2013-04-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (LOCALES): New variable split out from AWK.
(AWK): Adjust.
(next): Add LOCALES to the test so that it will pass everywhere.
Thanks to Juergen Kahrs for the report.
2013-04-16 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Prettify the lists of tests.
(GENTESTS_UNUSED): Bring the list up to date.
2013-03-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readdir): Add a check for GNU/Linux and NFS directory
and issue a warning if so.
(fts): Ditto for IRIX - can't check for NFS so just print the message.
(fnmatch.awk, fnmatch.ok): Improve portability.
2013-03-20 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readdir): Add -a to ls options. -f does not
automatically mean -a on all systems.
* jarebug.sh: Send error output of locale to /dev/null in case
it doesn't exist.
2013-03-11 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (colonwarn): New test.
* colonwarn.awk, colonwarn.in, colonwarn.ok: New files.
2013-02-26 Arnold D. Robbins <arnold@skeeve.com>
* parseme.ok: Update after change in grammar. Now with new and
improved error message!
2013-01-31 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Move functab4 into shlib tests, since it uses
@load. Thanks to Anders Wallin for the report.
(shlib-tests): Check --version output for "API" and run tests
if there.
2013-01-31 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am: To decide whether to run MPFR tests, use the output
of gawk --version instead of the automake TEST_MPFR conditional (which
has now been removed from configure.ac).
2013-01-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add all the mpfr test files. Duh.
(reginttrad): Use $(srcdir)/$@.awk. Double Duh.
2013-01-27 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am: Add mpfr tests if MPFR is available.
2013-01-20 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (reginttrad): New test.
* reginttrad.awk, reginttrad.ok: New files.
2013-01-16 Arnold D. Robbins <arnold@skeeve.com>
Fix tests to work with make diffout:
* rtlenmb.ok: New file.
* Makefile.am (clobber, mmap8k, rtlenmb): Tests adjusted.
(EXTRA_DIST): Add rtlenmb.ok.
2013-01-15 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Gentests: Remove a debugging printf.
2013-01-15 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (readdir): Try to protect against failure on filesystems
lacking type information by invoking readdir.awk before readdir0.awk
and passing the results of readdir to readdir0 for inspection.
* readdir0.awk: Analyze the results of the readdir extension.
If all file types are set to "u", we infer that this filesystem lacks
type information.
2013-01-14 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rand): Let Gentests create the test.
(fmtspcl): Add $(AWKFLAGS).
* Gentests: For MPFR tests, add $(AWKFLAGS) on the command line.
* mpfr-rand.ok: Updated.
2013-01-14 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (symtab8): Use grep to remove FILENAME from the output
so the test will succeed when building outside the source tree.
* symtab8.ok: Remove FILENAME.
2013-01-10 Andrew J. Schorr <aschorr@telemetry-investments.com>
* inplace.1.in, inplace.2.in, inplace.in, inplace1.1.ok, inplace1.2.ok,
inplace1.ok, inplace2.1.bak.ok, inplace2.1.ok, inplace2.2.bak.ok,
inplace2.2.ok, inplace2.ok, inplace3.1.bak.ok, inplace3.1.ok,
inplace3.2.bak.ok, inplace3.2.ok, inplace3.ok: New files.
* Makefile.am (EXTRA_DIST): Add new files.
(SHLIB_TESTS): Add inplace1, inplace2, and inplace3.
(inplace1, inplace2, inplace3): New tests.
2012-12-25 Arnold D. Robbins <arnold@skeeve.com>
* assignconst.awk, assignconst.ok: Removed.
* Makefile.am (EXTRA_DIST): Removed assignconst.awk, assignconst.ok.
(SHLIB_TESTS): Removed assignconst.
(assignconst): Removed test.
2012-12-24 Arnold D. Robbins <arnold@skeeve.com>
* 4.0.2: Release tar ball made.
2012-12-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (paramuninitglobal): New test.
* paramuninitglobal.awk, paramuninitglobal.ok: New files.
Thanks to John Haque.
2012-12-19 Arnold D. Robbins <arnold@skeeve.com>
* symtab9.awk, symtab9.ok: New files.
* Makefile.am (EXTRA_DIST): Add new files.
(symtab9): New test.
* symtab1.ok, testext.ok: Updated.
2012-12-16 Arnold D. Robbins <arnold@skeeve.com>
* symtab7.awk, symtab7.in, symtab7.ok, symtab8.awk, symtab8.in,
symtab8.ok: New files.
* Makefile.am (EXTRA_DIST): Add new files.
(symtab7, symtab8): New tests.
Thanks to Assaf Gordon <gordon@cshl.edu>.
2012-11-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readdir): Add a 'this could fail message'.
* readdir.awk: Revise to match simplified behavior of the extension.
2012-11-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (GAWK_EXTRA_TESTS): Move to sorted order of tests.
2012-11-12 Arnold D. Robbins <arnold@skeeve.com>
* symtab6.ok: Remove PROCINFO.
* Makefile.am (symtab6): Adjust recipe.
2012-11-10 Arnold D. Robbins <arnold@skeeve.com>
* symtab4.awk, symtab4.in, symtab4.ok, symtab5.awk, symtab5.in,
symtab5.ok, symtab6.awk: New files.
* Makefile.am (EXTRA_DIST): Add new files.
(symtab4, symtab5, symtab6): New tests.
Thanks to Assaf Gordon <gordon@cshl.edu>.
2012-10-28 Andrew J. Schorr <aschorr@telemetry-investments.com>
* messages.awk, fts.awk: Adjusted so make diffout will work.
* Makefile.am (messages): Adjust to use standard failure test for
make diffout.
2012-10-19 Arnold D. Robbins <arnold@skeeve.com>
* symtab1.awk: Adjust to not print ENVIRON and PROCINFO which won't
be the same as on the author's machine.
* lintwarn.ok: Adjust.
2012-10-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add jarebug.sh.
2012-10-11 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (readdir): Use $(top_srcdir) instead of `.'. Helps
when running the valgrind tests.
2012-10-11 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Updated.
2012-10-04 Akim Demaille <akim@lrde.epita.fr>
Fix VPATH builds.
* Makefile.am (shlib-tests): config.h is in builddir.
(beginfile2): So is gawk itself.
* Makefile.am (functab1, functab2, functab3, functab4, id, symtab1,
symtab2, symtab3): New tests.
* functab1.awk, functab1.ok, functab2.awk, functab2.ok, functab3.awk,
functab3.ok, functab4.awk, functab4.ok, id.awk, id.ok, symtab1.awk,
symtab1.ok, symtab2.awk, symtab2.ok, symtab3.awk, symtab3.ok:
New files.
2012-09-23 Arnold D. Robbins <arnold@skeeve.com>
* lintwarn.ok: Updated.
2012-09-14 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Updated. Twice.
2012-09-11 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (shlib-tests): Check if DYNAMIC is enabled and
only if so run the tests. A bit hacky. Needed at least for
z/OS.
2012-09-07 Arnold D. Robbins <arnold@skeeve.com>
* readdir.awk: Change argument to readdir_do_ftype().
2012-08-28 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add jarebug.sh.
(readdir): Use standard output filenames readdir.ok and _readdir
instead of readdir.out1 and readdir.out2. The standard names are
required for the pass-fail and diffout rules to work correctly.
(clean): Remove readdir.ok
2012-08-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (charasbytes): Revise test to canonicalize
whitespace. (For Mac OS X 10.5, at least.)
* charasbytes.ok: Updated.
2012-08-23 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (revout, revtwoway): New tests.
* revout.awk, revout.ok, revtwoway.awk, revtwoway.ok: New files.
2012-08-11 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add inchello.awk and incdupe[4-7].ok.
(GAWK_EXT_TESTS): Add incdupe[4-7].
(incdupe[4-7]): New tests to ensure that mixing -f with include
causes a fatal error.
* incdupe[4-7].ok, inchello.awk: New files.
2012-08-08 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fts): New test.
* fts.awk: New file.
2012-07-30 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (assignconst): Use AWKPATH to get results that will
be consistent no matter where the test is run.
* assignconst.ok: Updated.
2012-07-29 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readdir): New test.
* readdir0.awk, readdir.awk: New files.
2012-07-16 Arnold D. Robbins <arnold@skeeve.com>
* fnmatch.awk, fnmatch.ok: Portability updates.
2012-07-15 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Update contents.
2012-07-12 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fnmatch): New test.
* fnmatch.awk, fnmatch.ok: New files.
* Makefile.am (assignconst): New test.
* assignconst.awk, assignconst.ok: New files.
2012-06-28 Andrew J. Schorr <aschorr@telemetry-investments.com>
* time.awk: Avoid possibly throwing a spurious error by protecting
a race condition that depends on the order of expression evaluation.
2012-06-25 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rwarray): New test.
* rwarray.awk, rwarray.in, rwarray.ok: New files.
2012-06-21 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Update contents.
2012-06-20 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Update contents.
2012-06-19 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Update contents.
2012-06-18 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (testext): New test.
(EXTRA_DIST): Add new file testext.ok.
(SHLIB_TESTS): Add testext.
(clean): Add testext.awk to the list.
* testext.ok: New file.
2012-06-12 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (clean): Add fork.tmp.* to the list.
2012-06-10 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add new files time.awk and time.ok.
(SHLIB_TESTS): Add time.
* time.awk, time.ok: New files.
2012-05-29 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (clean): Add readfile.ok to list of files to removed.
2012-05-26 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (readfile): Revert previous patch, and add comment
explaining that we need to create readfile.ok on failure so that
"make diffout" will work properly.
(ordchr.awk, ordchr.ok): Add more tests to catch type conversion
problems.
2012-05-25 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (readfile): Don't copy the Makefile over readfile.ok
if there's a problem.
2012-05-24 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (fmtspcl, include2, incdupe, incdup2, incdupe3): Fix
paths to work properly when built in another directory.
2012-05-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add new files hello.awk, inclib.awk,
include.awk, include.ok, include2.ok, incdupe.ok, incdupe2.ok and
incdupe3.ok.
(GAWK_EXT_TESTS): Add include, include2, incdupe, incdupe2 and incdupe3.
(include2, incdupe, incdupe2, incdupe3): New tests.
* badargs.ok: Fix usage message to include new -i option.
* hello.awk, incdupe.ok, incdupe2.ok, incdupe3.ok, inclib.awk,
include.awk, include.ok, include2.ok: New files.
2012-08-12 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (regexprange): New test.
* regexprange.awk, regexprange.ok: New files.
2012-08-05 Arnold D. Robbins <arnold@skeeve.com>
New test from Nelson Beebe.
* Makefile.am (ofs1): New test.
* ofs1.awk, ofs1.in, ofs1.ok: New files.
2012-07-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (getline5): New test.
* getline5.awk, getline5.ok: New files.
2012-06-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (charasbytes): New test.
* charasbytes.awk, charasbytes.in, charasbytes.ok: New files.
2012-05-20 Arnold D. Robbins <arnold@skeeve.com>
* jarebug.sh: New file. Handles Mac OS X also.
* Makefile.am (jarebug): Use jarebug.sh to run the test.
2012-05-16 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (jarebug): Remove leading `-' from $(CMP) line.
2012-05-14 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (jarebug): Move to charset tests. Adjust to check
for existence of needed Japanese locale before running the test.
2012-05-09 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (jarebug): New test.
* jarebug.awk, jarebug.in, jarebug.ok: New files.
2012-04-08 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (VALGRIND): Set to empty to protect against random
values in the environment.
2012-04-08 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (EXTRA_DIST): Add missing files fork.ok, fork2.ok
and ordchr2.ok.
2012-04-08 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (AWK, PGAWK): Include new $(VALGRIND) variable in
command line (now passed in by top-level Makefile).
2012-04-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (ordchr2, readfile): Fix so "make diffout" will work
properly.
* orchr2.ok: New file.
2012-04-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (check): Add new shlib-tests target.
(SHLIB_TESTS): Add tests ordchr, ordchr2, fork, fork2, readfile and
filefuncs.
* ordchr.awk, ordchr.ok, fork.awk, fork.ok, fork2.awk, fork2.ok,
filefuncs.awk, filefuncs.ok: New files.
2012-04-01 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (valgrind-scan): Update to match modern valgrind output.
2012-04-01 John Haque <j.eh@mchsi.com>
* Makefile.am (mpfr-test): Add target for manual testing of MPFR
and GMP numbers.
* mpfrbigint.awk, mpfrexprange.awk, mpfrieee.awk, mpfrnr.awk,
mpfrrnd.awk, mpfrsort.awk: New tests.
(MPFR_TESTS): Add the new tests.
* mpfrnr.in, mpfrbigint.ok, mpfrexprange.ok, mpfrieee.ok, mpfrnr.ok,
mpfrrnd.ok, mpfrsort.ok: New files.
(AWK): Add AWKFLAGS; useful for testing with 'gawk -M' invocation.
2012-02-28 Arnold D. Robbins <arnold@skeeve.com>
* fmtspcl-mpfr.ok, fnarydel-mpfr.ok, fnparydl-mpfr.ok,
rand-mpfr.ok: New files.
* Makefile.am (EXTRA_DIST): Add them.
(CHECK_MPFR): New list of files that have MPFR variant .ok file.
* Gentests: Deal with MPFR files by modifying the generated
comparison command.
2011-12-26 John Haque <j.eh@mchsi.com>
* badargs.ok: Adjust for new and changed command line options.
2012-03-28 Arnold D. Robbins <arnold@skeeve.com>
* 4.0.1: Release tar ball made.
2012-03-20 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (printfbad3): New test.
* printfbad3.awk, printfbad3.ok: New files.
2012-02-22 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (beginfile2, next): Set LC_ALL=C so that error
messages will be in English for comparison with .ok files.
Thanks to Jeroen Schot <schot@a-eskwadraat.nl>.
2011-12-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rri1): New test.
* rri1.awk, rri1.in, rri1.ok: New files.
2011-12-06 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Rationalize the $(CMP) lines wherever possible.
2011-10-24 Arnold D. Robbins <arnold@skeeve.com>
* beginfile2.sh: Use `...` instead of $(...) for broken systems
where /bin/sh doesn't support $(...). Thanks to Nelson Beebe for
the report.
2011-10-21 John Haque <j.eh@mchsi.com>
* beginfile2.in, beginfile2.sh, beginfile2.ok: Adjust input file names.
2011-10-21 Corinna Vinschen <vinschen@redhat.com>
* Makefile.am (beginfile2): Adjust for running out of srcdir.
* beginfile2.sh: Same.
2011-10-02 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rtlen, rtlen01, rtlenmb): New tests.
* rtlen.ok, rtlen.sh, rtlen01.ok, rtlen01.sh: New files.
Thanks to Rogier <rogier777@gmail.com> as forwarded by
Jeroen Schot <schot@A-Eskwadraat.nl>.
2011-08-10 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (beginfile2, fpat3, fwtest3): New tests.
* beginfile2.awk, beginfile2.in, beginfile2.ok: New files.
* fpat3.awk, fpat3.in, fpat3.ok: New files.
* fwtest3.awk, fwtest3.in, fwtest3.ok: New files.
2011-08-09 Arnold D. Robbins <arnold@skeeve.com>
* pty1.awk, pty1.ok: New files.
* Makefile.am (pty1): New test.
(profile1, profile2, profile3): Use unique names for the profile
files to avoid problems with parallel 'make check'
2011-07-29 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (next): Redirect output to output file!
2011-07-28 Arnold D. Robbins <arnold@skeeve.com>
* sortu.awk, sortu.ok: Modified to make numeric comparison do
a stable sort. Thanks to Peter Fales <Peter.Fales@alcatel-lucent.com>.
* backgsub.ok: Update for change in code.
* Makefile.am (posix2008sub): Add --posix to invocation.
2011-07-26 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (getline4, gsubtst8): New tests.
* getline4.awk, getline4.in, getline4.ok: New files.
* gsubtst8.awk, gsubtst8.in, gsubtst8.ok: New files.
2011-07-15 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (gsubtst7): New test.
* gsubtst7.awk, gsubtst7.in, gsubtst7.ok: New files.
2011-06-24 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add ChangeLog.0.
* 4.0.0: Remake the tar ball.
2011-06-23 Arnold D. Robbins <arnold@skeeve.com>
* ChangeLog.0: Rotated ChangeLog into this file.
* ChangeLog: Created anew for gawk 4.0.0 and on.
* 4.0.0: Release tar ball made.
|