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
|
Mon Jun 20 20:35:04 2011 Arnold D. Robbins <arnold@skeeve.com>
* dfastress.awk, dfastress.ok: New files.
* Makefile.am (dfastress): New test.
Sun Jun 5 21:45:27 2011 Arnold D. Robbins <arnold@skeeve.com>
* fpat1.ok, fpat1.in: Updated to test things better.
Tue May 31 22:50:28 2011 Arnold D. Robbins <arnold@skeeve.com>
* regrange.awk, regrange.ok: New files.
* Makefile.am (regrange): New test.
Thu May 26 22:08:27 2011 Arnold D. Robbins <arnold@skeeve.com>
* fpat2.awk, fpat2.ok: New files. Thanks to Pat Rankin for the cases.
* Makefile.am (fpat2): New test.
Mon May 23 14:03:15 2011 Arnold D. Robbins <arnold@skeeve.com>
* fpatnull.awk, fpatnull.in, fpatnull.ok: New files.
* Makefile.am (fpatnull): New test.
Sun May 22 11:58:58 2011 Arnold D. Robbins <arnold@skeeve.com>
* dumpvars.ok: Updated.
Thu May 19 16:56:31 2011 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated.
Sat May 14 22:28:56 2011 Arnold D. Robbins <arnold@skeeve.com>
* delargv.awk, delargv.ok: New files.
* Makefile.am (delargv): New test.
Mon May 9 15:06:17 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Put next and exit tests into gawk specific tests
since they use BEGINFILE and ENDFILE. Thanks to Pat Rankin.
Sun May 8 20:32:59 2011 Arnold D. Robbins <arnold@skeeve.com>
* arraysort.ok, sort1.ok: Updated.
Wed May 4 23:37:27 2011 Arnold D. Robbins <arnold@skeeve.com>
Revise tests for array sorting.
* arraysort.awk, arraysort.ok, sort1.awk, sort1.ok,
sortfor.awk: Revised.
Wed May 4 23:07:39 2011 Arnold D. Robbins <arnold@skeeve.com>
* nastyparm.awk, nastyparm.ok: New files from John Haque.
* Makefile.am (nastyparm): New test.
Wed May 4 23:03:06 2011 Arnold D. Robbins <arnold@skeeve.com>
* delsub.awk, delsub.ok: New files.
* Makefile.am (delsub): New test.
Fri Apr 22 16:07:01 2011 John Haque <j.eh@mchsi.com>
* sortu.awk, sortu.ok: New files.
Fri Apr 22 09:19:06 2011 Arnold D. Robbins <arnold@skeeve.com>
* arraysort.ok: Updated.
Mon Apr 18 10:22:28 2011 John Haque <j.eh@mchsi.com>
* arraysort.awk, arraysort.ok, sort1.awk, sort1.ok: Updated.
Fri Apr 15 13:49:36 2011 Arnold D. Robbins <arnold@skeeve.com>
* ofmta.awk, ofmta.ok: New files from John Haque.
* Makefile.am (ofmta): New test.
Thu Apr 7 21:44:06 2011 Arnold D. Robbins <arnold@skeeve.com>
* arraysort.awk, arraysort.ok: Added more test cases.
Fri Apr 1 11:56:54 2011 Arnold D. Robbins <arnold@skeeve.com>
* arraysort.awk, arraysort.ok: New files from John Haque,
edited somewhat.
* Makefile.am (arraysort): New test.
Wed Mar 30 22:00:59 2011 Arnold D. Robbins <arnold@skeeve.com>
* next.sh, exit.sh: New files from John Haque, edited somewhat.
* Makefile.am (next, exit): New tests.
Mon Feb 21 20:32:36 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (GAWK_EXT_TESTS): Include profile3. Thanks to
Scott Deifik for pointing out the omission.
Tue Feb 15 17:11:26 2011 Pat Rankin <rankin@pactechdata.com>
* sortfor.awk: New values for PROCINFO["sorted_in"].
* sortfor.ok: Sync with updated sortfor.awk.
Wed Feb 16 21:09:50 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (lintwarn): New test.
* lintwarn.awk, lintwarn.ok: New files from John Haque.
* funsmnam.ok, noeffect.ok, paramdup.ok, paramres.ok: Adjust
after fixes to lint warnings.
Mon Feb 14 21:31:10 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile2): Add -v sortcmd=sort to pgawk invocation.
(profile1): Remove awkprof.out. Thanks to Pat Rankin for noticing.
Sun Feb 13 20:27:35 2011 Pat Rankin <rankin@pactechdata.com>
* xref.awk: Allow sortcmd to be preset via -v option.
* profile2.ok: Sync with updated xref.awk.
Sun Feb 13 19:55:15 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile3): New test.
* profile3.awk, profile3.ok: New files.
Fri Feb 11 10:29:48 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (manyfiles): Bump limit up above 1024, which is
what most modern systems have for number of open file descriptors.
Tue Feb 8 22:49:17 2011 Arnold D. Robbins <arnold@skeeve.com>
* aryprm4.ok, scalar.ok, sclforin.ok, sclifin.ok: Fixed to match
output message changes.
Mon Feb 7 21:39:39 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (negrange): New test.
* negrange.awk, negrange.ok: New files.
Tue Feb 1 23:21:39 2011 Arnold D. Robbins <arnold@skeeve.com>
* xref.awk: Change sort command to just "sort"; avoids
problems for Windows and is good enough for the test.
* profile2.ok: Update.
Tue Feb 1 10:20:47 2011 Arnold D. Robbins <arnold@skeeve.com>
* sortfor.awk: Change magic string to match code.
Thu Jan 27 22:56:19 2011 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (sortfor): New test.
* sortfor.awk, sortfor.in, sortfor.ok: New files.
Thu Jan 27 22:03:22 2011 John Haque <j.eh@mchsi.com>
* xref.awk, profile2.ok: Fixed to be character set independent.
Sun Dec 26 13:54:21 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Include profile2.ok in the list. Oops.
Mon Dec 13 13:54:56 2010 Arnold D. Robbins <arnold@skeeve.com>
* localenl.sh: Use --posix option.
Sun Dec 12 13:58:36 2010 Arnold D. Robbins <arnold@skeeve.com>
* gsubtst5.ok: Adjust contents.
Tue Dec 7 22:31:51 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile1, profile2): New tests.
* dtdgport.awk, xref.original, xref.awk, profile2.ok: New files.
* Gentests: Use POSIX character classes instead of ranges.
Mon Dec 6 19:47:09 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (whiny): Removed test.
* whiny.awk, whiny.in, whiny.ok: Removed.
Wed Dec 1 08:11:46 2010 Corinna Vinschen <vinschen@redhat.com>
* Makefile.am (beginfile1): Refer to Makefile instead of
$(srcdir)/Makefile for building out of the source directory.
Tue Nov 30 13:51:35 2010 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated.
Mon Nov 29 21:52:49 2010 Arnold D. Robbins <arnold@skeeve.com>
* funstack.awk, gsubtst5.ok, igncfs.awk, longwrds.awk,
ofmtbig.awk, subamp.awk: Fix regexes to remove ranges.
Fri Nov 12 11:58:40 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (dumpvars): New test.
* dumpvars.in, dumpvars.ok: New files.
Thu Nov 11 16:29:06 2010 Arnold D. Robbins <arnold@skeeve.com>
* backgsub.ok: Updated to match change in code.
* posix2008sub.awk, posix2008.ok: New files, renamed from ...
* psx96sub.awk, psx96sub.ok: Removed.
* Makefile.am (posix2008sub): Renamed from `psx96sub'.
Tue Nov 2 12:14:50 2010 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated.
Mon Nov 1 21:44:48 2010 Arnold D. Robbins <arnold@skeeve.com>
New tests for arrays of arrays, courtesy of John Haque
<j.eh@mchsi.com>.
* Makefile.am (aadelete1, aadelete2, aarray1,
aasort, aasorti): New tests.
* aadelete1.awk, aadelete1.ok, aadelete2.awk, aadelete2.ok,
aarray1.awk, aarray1.ok, aasort.awk, aasort.ok,
aasorti.awk, aasorti.ok: New files.
Unrelated:
* badargs.ok: Updated.
Tue Oct 26 20:49:41 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (switch2): Made into a test.
* switch2.ok: New file.
Tue Oct 19 08:26:03 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (gsubtst6, mbstr1, mbprintf3, printfbad2):
Re-enable these tests that got lost during the merge. Thanks
to Scott Deifik for noticing.
Fri Oct 15 14:20:22 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (beginfile1, range1): New tests.
* beginfile1.awk, beginfile1.in, beginfile1.ok: New files.
* range1.awk, range1.in, range1.ok: New files.
Sun Jun 27 22:01:38 2010 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated with new usage message.
Tue Jun 22 20:55:47 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fpat1, patsplit): New tests.
* fpat1.awk, fpat1.in, fpat1.ok, patsplit.awk, patsplit.ok: new files.
Fri Jan 16 11:36:02 2009 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok, funstack.awk, gsubtst4.ok: Adjust to change in
--gen-po option, removal of -r, and enabling interval expressions.
Fri Jan 16 11:36:02 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (indirectcall): New test.
* indirectcall.awk, indirectcall.in, indirectcall.ok: New files.
Tue Dec 30 22:27:08 2008 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated.
Tue Dec 9 06:58:00 2008 Steffen Schuler <schuler.steffen@googlemail.com>
* Makefile.am (splitarg4): New test.
* splitarg4.awk, splitarg4.in, splitarg4.ok: New files.
Wed Dec 26 22:01:52 2001 Arnold D. Robbins <arnold@skeeve.com>
* pid.awk: Fix to use PROCINFO now that /dev/pid, /dev/ppid gone.
Thu May 6 20:55:14 2010 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.8: Release tar file made.
Wed Apr 21 22:23:30 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Add Gentests.vms so it'll be
in the dist.
* localenl.sh, localenl.ok: Remove UNKNOWN locale per
request from Nelson Beebe.
* lc_num1.awk, lc_num1.ok: Revised to not fail on systems
where the quote flag isn't supported. Also per Nelson Beebe.
Thu Feb 18 22:50:54 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fcall_exit2): New test.
* fcall_exit2.awk, fcall_exit2.in, fcall_exit2.ok: New files.
Wed Feb 17 23:25:27 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fcall_exit): New test.
* fcall_exit.awk, fcall_exit.ok: New files.
Fri Feb 5 13:02:10 2010 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (forref): New test.
* forref.awk, forref.ok: New files.
Tue Oct 6 19:49:22 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (uninit5): New test.
* uninit5.awk, uninit5.ok: New files.
Tue Aug 4 06:04:04 2009 Arnold D. Robbins <arnold@skeeve.com>
* hsprint.ok: Updated.
Tue Jul 21 22:28:56 2009 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.7: Release tar file made.
Fri Jul 3 13:04:55 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (charset-tests): Moved tests that can fail based on
character set and locale issues into a separate section.
Wed Jun 24 22:30:31 2009 Arnold D. Robbins <arnold@skeeve.com>
* lintold.awk: Changed to avoid floating point problems on VMS.
Wed Jun 24 05:39:00 2009 Arnold D. Robbins <arnold@skeeve.com>
* printfbad2.awk, printfbad2.ok: Adjusted for systems where sed
will add a final newline if the input didn't contain one.
Mon Jun 22 00:44:50 2009 Pat Rankin <rankin@pactechdata.com>
* getlndir.awk (SRCDIR): Allow caller to override "." as directory.
* intformat.awk (HUGEVAL): Allow caller to override the largest
value, and restructure 10^x and 2^y loops to use it without
overflowing on non-IEEE floating pointing hosts.
Tue Jun 23 05:26:52 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (MACHINE_TESTS): Move fmtspcl to here per Pat Rankin.
Fri Jun 19 14:26:55 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (GAWK_EXT_TESTS): Fixed sorting of tests.
Removed ovrflow1 test since double1 is a superset; thanks
to Pat Rankin.
* (ovrflow1.awk, ovrflow1.ok): Removed.
Thu Jun 18 05:46:32 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (localenl): Per Michal Jaegermann, send stderr output
to /dev/null.
* (machine-tests): Moved several tests to new section for tests
whose output can vary by hardware.
Thu Jun 11 04:50:44 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (lc_num1): Don't need --posix, changed command line
so that AWKPATH influences again. Thanks to Corinna Vinschen
for making me fix this.
Wed Jun 10 08:28:13 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (lc_num1, printfbad2): Fix so building outside the
source directory works.
Thu May 21 21:10:53 2009 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated.
Fri May 15 14:38:16 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (paramres): New test.
* paramres.awk, paramres.ok: New files.
Fri Mar 27 10:57:49 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (printfbad2): New test.
* printfbad2.awk, printfbad2.in, printfbad2.ok: New files.
Tue Feb 3 22:08:27 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (uparrfs): New test.
* uparrfs.awk, uparrfs.in, uparrfs.ok: New files.
Mon Jan 5 22:53:26 2009 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (getlndir): New test.
* getlndir.awk, getlndir.ok: New files.
Mon Dec 29 22:46:10 2008 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mbprintf3): New test.
* mbprintf3.awk, mbprintf3.in, mbprintf3.ok: New files.
Thu Dec 18 20:57:39 2008 Stepan Kasal <skasal@redhat.com>
* lc_num1.awk, lc_num1.ok: Test that the quote modifier in
printf is not sticky.
* Makefile.am: Add it.
* Gentests: Allow _ in test names.
Thu Dec 11 21:36:11 2008 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mbstr1): New test.
* mbstr1.awk, mbstr1.ok: New files.
Thu Dec 4 22:44:39 2008 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (closebad): New test.
* closebad.awk, closebad.ok: New files.
Thu Jul 31 21:44:21 2008 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (match3, gsubtst6): New tests.
* match3.awk, match3.in, match3.ok: New files.
* gsubtst6.awk, gsubtst6.ok: New files.
Fri May 2 12:43:51 2008 Steffen Schuler <schuler.steffen@googlemail.com>
* Makefile.am (mbfw1): Add code for test to use a UTF locale.
Wed Apr 23 22:13:47 2008 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (funlen, mbfw1, mbprintf1, mbprintf2): New tests.
* funlen.awk, funlen.in, funlen.ok: New files.
* mbfw1.awk, mbfw1.in, mbfw1.ok: New files.
* mbprintf1.awk, mbprintf1.in, mbprintf1.ok: New files.
* mbprintf2.awk, mbprintf2.ok: New files.
Mon Oct 22 08:49:05 2007 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.6: Release tar file made.
Wed Sep 26 14:32:28 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (localenl): New test.
(regtest): Fixed invocation of shell script.
* localenl.sh, localenl.ok: New files.
* reg/func2.good: Revised to match current gawk output.
Wed Sep 26 14:49:04 2007 Eli Zaretskii <eliz@gnu.org>
* exitval2.w32: New file, a Windows version for exitval2.awk.
Tue May 29 13:22:33 2007 Arnold D. Robbins <arnold@skeeve.com>
* badargs.ok: Updated.
Thu May 17 21:10:51 2007 Pat Rankin <rankin@pactechdata.com>
* icasers.awk: Modify pattern to work on VMS too, doesn't
break Unix/Linux.
Tue May 15 22:05:24 2007 Pat Rankin <rankin@pactechdata.com>
Steps towards generating VMS .mms file to run test suite.
* Makefile.am (FAIL_CODE1): New macro, list of programs
that exit 1.
* Gentests: Add VMS code.
* Gentests.vms: New file.
Wed May 2 19:30:54 2007 Stepan Kasal <kasal@ucw.cz>
Revert precedence of concatenation and | getline.
From mail dated 2005-10-31.
* parsefld.awk, parsefld.in, parsefld.ok: New files.
* Makefile.am (parsefld): New basic test, check for $/regex/ and
for /re1/+/re2/.
* getline.awk, getline.ok: Add precedence check "echo " "date"|getline
Sun Apr 29 22:43:28 2007 Arnold D. Robbins <arnold@skeeve.com>
* hsprint.awk: Add extra "%" to format string. Thanks to Nelson Beebe.
* hsprint.ok: Revised.
Tue Apr 24 23:15:01 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
* fmtspcl.tok: Provide correct version.
Tue Apr 17 22:23:41 2007 Arnold D. Robbins <arnold@skeeve.com>
* double2.awk, double2.ok: Limit to 2^63 for portability across
different platforms. Sigh.
Thu Apr 12 20:00:27 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
* Makefile.am, Makefile.in (fmtspcl): Use fmtspcl.tok to build
a fmtspcl.ok file suitable for the given platform.
(diffout): Handle case where the .ok file is in the build directory.
Mon Mar 26 08:24:04 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fmtspcl.ok): Don't remove for cleaning, add
to EXTRA_DIST.
Fri Mar 9 11:38:34 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fmtspcl.tok): Removed use of and reference
to this file.
Tue Feb 6 08:21:02 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (double1, double2, zero2): New tests.
* double1.awk, double1.ok, double2.awk, double2.ok,
zero2.awk, zero2.ok: New files.
Sun Feb 4 16:32:45 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (parse1): New test.
* parse1.awk, parse1.in, parse1.ok: New files.
Thu Feb 1 17:41:48 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
* Makefile.am (fmtspcl): New test.
(CLEANFILES): Add fmtpspcl.ok to list.
* fmtspcl.awk, fmtspcl.tok: New files.
Mon Jan 29 15:31:35 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
* Makefile.am (diffout): Make it work if no problems.
(valgrind-scan): New target to show problems.
Mon Jan 29 12:51:16 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (reint2): New test.
* reint2.awk, reint2.in, reint2.ok: New files.
Fri Jan 26 20:01:38 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
* Makefile.am (intformat): New test.
* intformat.awk, intformat.ok: New files.
Tue Jan 23 08:10:48 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fwtest2): New test.
* fwtest2.awk, fwtest2.in, fwtest2.ok: New files.
Sun Jan 21 13:09:33 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (synerr2, wideidx2): New test.
* synerr2.awk, synerr2.ok, wideidx2.awk, wideidx2.ok: New files.
Fri Jan 19 15:11:12 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (strnum1, widesub4): New test.
* strnum1.awk, strnum1.ok, widesub4.awk, widesub4.ok: New files.
Thu Jan 18 13:37:00 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
* Makeilfe.am (devfd, wideidx, widesub, widesub2, widesub3): New
tests.
* devfd.in4, devfd.in5, devfd.ok, wideidx.awk, wideidx.in, wideidx.ok,
widesub.awk, widesub.ok, widesub2.awk, widesub2.ok, widesub3.awk,
widesub3.in, widesub3.ok: New files.
Tue Jan 16 12:16:39 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
* Makefile.am: In pid test, no further need to remove _pid.in,
since the test no longer creates that file.
* pid.awk: Do not read correct values from stdin (they are now passed
as command-line variables with -v). Make sure to produce output
if the comparisons are successful.
* pid.ok: No longer empty, should contain 3 lines if all goes well.
* pid.sh: Do not create _pid.in; instead, pass values in with -v.
Sun Jan 14 18:03:12 2007 Arnold D. Robbins <arnold@skeeve.com>
* fnarray.ok: Updated.
2007-01-13 Eli Zaretskii <eliz@gnu.org>
* pipeio2.awk: Don't use empty lines, because Windows ECHO does
something different when invoked without arguments.
* pipeio2.ok: Update.
* Makefile.am (EXTRA_DIST): Add exitval2.w32.
* exitval2.w32: New file.
Sat Jan 13 21:25:11 2007 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* lintold.awk, lintold.in, lintold.ok: New `--lint-old' test.
* Gentests, Makefile.am: Adjust.
Sat Jan 13 21:17:51 2007 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* Makefile.am (Maketests): Allow rebuilding from a VPATH build.
Fri Jan 12 14:04:24 2007 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mtchi18n): new test.
* mtchi18n.awk, mtchi18n.in, mtchi18n.ok: new files.
Wed Sep 6 02:09:26 2006 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (mixed1): new test.
* mixed1.ok: new file.
Tue Jun 20 05:37:53 2006 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (devfd1, devfd2): new tests.
* devfd.in1, devfd.in2, devfd1.awk, devfd1.ok, devfd2.ok: new files.
Sun Mar 12 23:48:31 2006 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (concat4): new test.
* concat4.awk, concat4.in, concat4.ok: new files.
Sun Mar 12 23:33:26 2006 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (subi18n): new test (from
KIMURA Koichi <kimura.koichi@canon.co.jp>).
* subi18n.awk, subi18n.ok: New files.
Mon Dec 19 05:41:56 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (ovrflow1): new test.
* ovrflow1.awk, ovrflow1.ok: new files.
Wed Dec 14 19:01:08 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (binmode1): new test.
* binmode1.ok: new file.
Fri Oct 7 12:28:41 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fwtest): new test.
* fwtest.awk, fwtest.in, fwtest.ok: new files.
Fri Aug 12 14:40:47 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nofile): New test.
* nofile.ok: New file.
Tue Jul 26 21:46:16 2005 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.5: Release tar file made.
Sun Jul 10 18:31:45 2005 Scott Deifik <scottd@amgen.com>
* regtest.sh: Changed to use diff instead of cmp for djgpp.
This addresses DOS vs. UNIX end-of-line issues.
Thu Jun 9 23:40:14 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (Maketests): Don't use $< in rule, it breaks
on some non-GNU versions of make. Sigh.
Wed Apr 27 22:22:05 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (longdbl): new test.
* longdbl.awk, longdbl.in, longdbl.ok: new files.
Wed Feb 2 16:44:41 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (exitval2): new test.
* exitval2.awk, exitval2.ok: new files.
Mon Jan 31 10:00:52 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (gnuops3): new test.
* gnuops3.awk, gnuops3.ok: new files.
Wed Jan 19 18:04:40 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (hex): new test.
* hex.awk, hex.ok: new files.
Sun Jan 9 11:53:09 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (strftime, igncras2, subamp): Use `GAWKLOCALE',
not `GAWK_LOCALE'. Grrr!
Mon Jan 3 12:20:08 2005 William J. Poser <wjposer@ldc.upenn.edu>
* Makefile.am (wjposer1): new test.
* wjposer1.awk, wjposer1.in, wjposer1.ok: new files.
Mon Jan 3 11:55:48 2005 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rsstart1, rsstart2, rsstart3): new tests.
* rsstart1.in, rsstart1.awk, rsstart1.ok, rsstart2.awk,
rsstart2.ok, rsstart3.ok: new files.
Sun Dec 19 17:31:48 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (gensub2): new test.
* gensub2.awk, gensub2.ok: new files.
Thanks to "John H. DuBois III" <spcecdt@armory.com>.
Thu Dec 9 15:22:58 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fsspcoln): new test.
* fsspcoln.awk, fsspcoln.in, fsspcoln.ok: new files.
Mon Nov 29 18:41:33 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (iobug1): new test.
* iobug1.awk, iobug1.ok: new files.
Tue Sep 28 18:39:53 2004 Arnold D. Robbins <arnold@skeeve.com>
* nondec.awk, nondec.ok: Add 00.34 as value to print, it should
not be treated as octal.
Mon Aug 2 12:18:15 2004 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.4: Release tar file made.
Wed Jul 14 16:04:46 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rstest6): new test.
* rstest6.awk, rstest6.in, rstest6.ok: new files.
Tue Jul 13 10:53:32 2004 Arnold D. Robbins <arnold@skeeve.com>
* strftlng: Use `$(CMP) ... >/dev/null 2>&1' instead of `-s'
for OS/2 and other systems that use `CMP = diff -a'.
Mon Jun 14 18:44:39 2004 Pat Rankin <rankin@pactechdata.com>
* longwrds.awk: allow caller the means to override SORT command.
Tue Jun 8 14:12:52 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fordel, printfbad1): new tests.
* fordel.awk, fordel.ok: new files.
* printfbad1.awk, printfbad1.ok: new files.
Mon Apr 19 20:29:52 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (manglprm): new test.
* manglprm.awk, manglprm.in, manglprm.ok: new files.
Mon Feb 23 18:39:24 2004 Arnold D. Robbins <arnold@skeeve.com>
* inftest.awk: Add loop limit per Nelson H.F. Beebe.
* Makefile.am (strftime): Use LC_ALL=C for `date' invocation.
Thu Feb 12 02:08:15 2004 Stepan Kasal <kasal@ucw.cz>
* Makefile.am (diffout): Use $(srcdir), when we are not building
in the source tree.
Wed Feb 11 10:23:39 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (strcat1): new test.
* strcat1.awk, strcat1.ok: new files.
Fri Feb 6 12:09:55 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (CLEANFILES): Added.
Thu Feb 5 15:34:14 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (exitval1): new test.
* exitval1.awk, exitval1.ok: new files.
Mon Feb 2 10:29:19 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (subamp): new test.
* subamp.awk, subamp.in, subamp.ok: new files.
* subamp, ignrcas2, strftime: Set GAWK_LOCALE, not LC_ALL.
Wed Jan 14 15:28:34 2004 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (backw): new test.
* backw.awk, backw.in, backw.ok: new files.
Mon Dec 1 10:29:22 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (concat3): new test.
* concat3.awk, concat3.ok: new files.
Sun Nov 2 16:05:21 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (concat2): new test.
* concat2.awk, concat2.ok: new files.
Wed Oct 29 13:35:37 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (subsepnm): new test.
* subsepnm.awk, subsepnm.ok: new files.
Mon Sep 15 16:05:37 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (ignrcas2): new test.
* ignrcas2.awk, ignrcas2.ok: new files.
Tue Sep 9 16:03:34 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (unterm): new test.
* unterm.awk, unterm.ok: new files.
Mon Jul 7 11:01:43 2003 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.3: Release tar file made.
Fri Jul 4 11:12:07 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (poundbang2): Removed.
(poundbang): Added env var settings.
Thu Jun 26 15:44:33 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (match2, whiny): new tests.
* match2.awk, match2.ok: new files.
* whiny.awk, whiny.ok: new files.
Thu Jun 26 14:51:40 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Use double quotes for sed invocation to make
life easier (eventually) for DOS version of Makefile.
* pipeio2.awk, pipio2.ok: Ditto.
Wed Jun 18 12:32:14 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (AWK): Use LC_ALL=$${GAWKLOCALE:-C} and
same for LANG when running awk. Provides sane locale for
tests with ability to override it if need be.
(all tests): Removed explicit setting of LC_ALL and LANG.
* Gentests: Ditto.
Wed May 28 08:02:33 CEST 2003 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (uninit4): new test.
* uninit4.awk, uninit4.ok: new files.
Wed May 28 06:30:23 2003 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (aryprm4 aryprm5 aryprm6 aryprm7 aryprm8 scalar uninit3):
new tests.
* aryprm4.awk aryprm4.ok aryprm5.awk aryprm5.ok aryprm6.awk aryprm6.ok:
aryprm7.awk aryprm7.ok aryprm8.awk aryprm8.ok scalar.awk scalar.ok:
uninit3.awk uninit3.ok: new files.
Tue May 27 14:27:50 2003 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (aryprm1, aryprm2, aryprm3, sortempty): New tests.
* aryprm1.awk, aryprm1.ok, aryprm2.awk, aryprm2.ok: New files.
* aryprm3.awk, aryprm3.ok, sortempty.awk, sortempty.ok: dtto
* prmarscl.ok: The actual error message has changed.
Tue May 27 08:23:51 2003 Stepan Kasal <kasal@math.cas.cz>
* arrayref3.ok, arrayref4.ok, fnaryscl.ok: Error messages reformatted.
Sun Jun 8 17:18:06 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fmttest, strtonum, nested, gsubtst5, delarpm2): New tests.
* fmttest.awk, fmttest.ok: New files. From Nelson Beebe,
<beebe@math.utah.edu>.
* strtonum.awk, strtonum.ok: New files.
* nested.awk, nested.in, nested.ok: New files.
* gsubtst5.awk, gsubtst5.in, gsubtst5.ok: New files.
* delarpm2.awk, delarpm2.ok: New files. (Also from Nelson Beebe.)
* switch2.awk: Currently unused test for switch code.
Wed May 14 16:49:53 2003 Arnold D. Robbins <arnold@skeeve.com>
* Gentests: Add LC_ALL=C LANG=C to generated tests.
* Makefile.am: All other manual tests: ditto.
Sun May 11 15:27:55 2003 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (rsnulbig, rsnulbig2): New tests.
* rsnulbig.ok, rsnulbig2.ok: New files.
Sun May 11 15:00:20 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (arrayprm2, arrayprm3, arryref2, arryref3, arryref4,
arryref5, rstest3, rstest4, rstest5): New tests.
* arrayprm2.awk, arrayprm2.ok, arrayprm3.awk, arrayprm3.ok, arryref2.ok,
arryref3.ok, arryref4.ok, arryref5.ok, rstest3.awk, rstest3.ok, rstest4.awk,
rstest4.ok, rstest5.awk, rstest5.ok: New files.
Sun May 11 12:20:59 2003 Arnold D. Robbins <arnold@skeeve.com>
* strftime.awk: Remove seconds from input and strftime output,
to decrease chance of failing on second boundary.
* Makefile.am (strftime): Tweak message appropriately.
Tue Mar 25 08:35:42 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fnarray2): New test.
* fnarray2.awk, fnarray2.ok: New files.
Wed Mar 19 14:10:31 2003 Arnold D. Robbins <arnold@skeeve.com>
This time for sure.
-- Bullwinkle
* Release 3.1.2: Release tar file made.
Wed Mar 19 14:00:00 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (synerr1): New test.
* synerr1.awk, synerr1.ok: New files.
Tue Mar 4 10:32:23 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (clean): Remove `core*' for modern Linux which
drops core in `core.PID' files.
2003-02-17 Jim Meyering <jim@meyering.net>
* Makefile.am (check): Don't depend on the pass-fail rule that
reports any failures. Otherwise, for `make -j' that rule's commands
could run before all tests had completed, resulting in spurious
failures or potentially, even unreported failures. Instead, just
`$(MAKE) pass-fail'.
Sun Feb 9 11:48:32 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Moved `space' into UNIX_TESTS. Breaks in
MS environments.
Tue Feb 4 14:28:06 2003 Arnold D. Robbins <arnold@skeeve.com>
All relevant files: Copyright year updated to 2003.
Tue Feb 4 12:22:41 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (fnmisc): New test case.
* fnmisc.awk, fnmisc.ok: New files.
Sun Feb 2 15:33:33 2003 Stepan Kasal <kasal@math.cas.cz>
* getline3.awk, getline3.ok: Renamed from getline2.awk, getline2.ok
* Makefile.am (getline, getline2): getline renamed to getline2,
new test under the name getline.
* getline.awk, getline.ok, getline2.awk, getline2.ok:
rename getline.* getline2.*; new files getline.* .
* getline.awk, getline.ok: add tests for ``cmd | getline ''
* Makefile.am (printf0): New test.
* printf0.awk, printf0.ok: New files.
* fnarray.ok: The error message has changed.
Thu Jan 30 15:32:56 2003 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (splitarr, getline2, inputred, prec): New tests.
* splitarr.awk, splitarr.ok: New files.
* getline2.awk, getline2.ok: New files.
* inputred.awk, inputred.ok: New files.
* prec.awk, prec.ok: New files.
* noeffect.awk: add second no-effect command; two error messages
should be generated. Add some empty statements, to check that --lint
doesn't abort on them.
Tue Jan 28 18:34:22 2003 Arnold D. Robbins <arnold@skeeve.com>
* arrymem1.awk: Enhanced test.
* arrayme1.ok: Updated for new output
Mon Jan 27 14:07:16 2003 Stepan Kasal <kasal@math.cas.cz>
* nfldstr.awk: Add tests for automatic number conversion.
Mon Jan 27 12:25:41 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (asort, asorti, match1): New tests.
* match1.awk, match1.in: New files.
* asort.awk, asort.in: New files.
* asorti.awk, asorti.in: New files.
Mon Jan 27 12:10:16 2003 Stepan Kasal <kasal@math.cas.cz>
* strtod.awk, strtod.in, strtod.ok: Added test for 0e0 and similar.
Sun Jan 26 16:49:41 2003 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (zeroe0): New test.
* zeroe0.awk, zeroe0.in: New files.
Thu Jan 2 11:09:12 2003 Arnold D. Robbins <arnold@skeeve.com>
* parseme.ok, noparms.ok: Revised for bison 1.875.
Tue Dec 31 16:54:44 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: (poundbang): Fix code.
(efence): New target to remove _* files run with Electric Fence
but that are otherwise OK.
Thu Dec 26 16:44:37 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (poundbang): Add code to handle systems with limits on
paths for #! files.
Mon Dec 9 14:20:44 2002 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (space): New test: ``gawk -f " " file'' should try
to include file ` '.
Sun Nov 17 21:47:11 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (manyfiles): Reference $(srcdir)/$@.ok so can build
and test in a different directory.
Sun Nov 3 14:47:59 2002 Arnold D. Robbins <arnold@skeeve.com>
Move tests with inline input and/or programs into separate files so can let
Gentests do more work. Per Nelson Beebe, just print the name of each test.
* Makefile.am (fstabplus, longwrds, fieldwdth, ignrcase, posix, rs, fsbs):
removed targets so will be generated by Gentests.
(negexp, resplit, childin, back89, nfldstr, nondec): ditto.
* Gentests: print name of test, make cmp not echo by prefixing with @.
* fstabplus.in: new file.
* fieldwdth.awk, fieldwdth.in: new files.
* ignrcase.awk, ignrcase.in: new files.
* longwrds.awk: send output to sort instead of letting makefile do it.
* longwrds.in: renamed from manpage.
* posix.in: new file.
* manyfiles.ok: new file.
* rs.awk: new file.
* fsbs.awk: new file.
* negexp.awk: new file.
* resplit.awk, resplit.in: new files.
* childin.awk, childin.in: new files.
* back89.awk: new file.
* nfldstr.awk, nfldstr.in: new files.
Sun Nov 3 14:37:39 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (uninit2): new test case, requires lint.
* uninit2.awk, uninit2.ok: new files.
Fri Nov 1 11:34:45 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nondec): Always run this test.
Tue Oct 29 10:40:47 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): Added Gentests to list of files
to distribute.
Mon Oct 28 15:36:42 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (icasers, icasefs, rstest1, rstest2): new test cases.
(argarray): Remove argarray.in if not in srcdir.
* icasers.awk, icasers.in, icasers.ok: new files.
* icasefs.awk, icasefs.ok: new files.
* rstest1.awk, rstest1.ok: new files.
* rstest2.awk, rstest2.ok: new files.
Mon Oct 28 12:25:25 2002 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (uninitialized): New test.
* uninitialized.awk, uninitialized.ok: New files.
Mon Oct 28 11:24:16 2002 Stepan Kasal <kasal@math.cas.cz>
* Gentests: new script
* Maketests: new file, generated automatically by Gentests
* Makefile.am: new rules and variables to make use of Gentests;
Most targets removed, Gentests will take care
Sun Oct 13 16:58:07 2002 Stepan Kasal <kasal@math.cas.cz>
* Makefile.am (nfneg): new test case.
* nfneg.awk, nfneg.ok: new files.
Mon Oct 7 09:38:07 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (noloop1, noloop2): new test cases.
* noloop.awk, noloop1.in, noloop1.ok, noloop2.in, noloop2.ok:
new files.
Tue Oct 1 18:28:40 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (poundbang): Rewrote rule to avoid problems
with hardcoding of /tmp pathname.
(poundbang.awk): Changed the way it works.
(poundbang.ok): Removed.
Thu Sep 5 13:31:28 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (rebuf): new test case.
* rebuf.awk, rebuf.in, rebuf.ok: new files.
Wed Aug 21 15:31:57 2002 Andreas Buening <andreas.buening@nexgo.de>
* Makefile.am (AWKPROG): Add $(EXEEXT) macro.
(PATH_SEPERATOR): Removed.
(poundbag): Added $(EXEEXT) and use of ${TMPDIR-/tmp}.
Wed Aug 7 13:47:09 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (nulrsend): new test case.
* nulrsend.awk, nulrsend.in, nulrsend.ok: new files.
Sun Aug 4 00:25:23 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (gsubtst3, gsubtst4): new test cases.
* gsubtst3.awk, gsubtst3.ok, gsubtst4.awk, gsubtst4.ok: new files.
Thu May 9 22:31:36 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (gsubtst2): new test case.
* gsubtest.awk, gsubtest.ok: Added new test.
* gsubtst2.awk, gsubtst2.ok: new files.
Sun May 5 12:38:55 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am: Minor mods to use LC_ALL=C so that checks will
use the English messages, not any translations.
(manyfiles): Fixed (hopefully) to leave a file around if the
test fails, so that we don't get a spurious "ALL TESTS PASSED"
message.
Wed May 1 16:41:32 2002 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.1: Release tar file made.
Tue Apr 16 17:07:25 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (pass-fail): New target that prints an
`all passed' or `x tests failed' message, for use in
grep-ing build logs.
(check): Add pass-fail as last dependency.
Thanks to Nelson Beebe for the thought, beebe@math.utah.edu.
Sun Mar 10 17:00:51 2002 Scott Deifik <scottd@amgen.com>
* Makefile.am (strftime): Add TZ=GMT0 into environment, to
regularize things, esp. for some DJGPP systems.
Mon Feb 18 14:55:19 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (longsub): new test case.
* longsub.awk, longsub.in, longsub.ok: new files.
Wed Jan 23 15:03:36 2002 Andreas Buening <andreas.buening@nexgo.de>
* Makefile.am (PATH_SEPARATOR): Added.
(awkpath): Make use of PATH_SEPARATOR.
Wed Jan 23 14:50:38 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (concat1): new test case.
* concat1.awk, concat1.in, concat1.ok: new files.
Mon Jan 7 22:21:25 2002 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (forsimp): new test case.
* forsimp.awk, forsimp.ok: new files.
Wed Dec 26 22:01:52 2001 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (inftest): Add sed to fix case issues between
different libc versions. Ugh.
Wed Dec 19 16:01:58 2001 Peter J. Farley III <pjfarley@dorsai.org>
* Makefile.am (manyfiles): Also delete \15 in tr.
Tue Dec 18 20:56:07 2001 Andreas Buening <andreas.buening@nexgo.de>
* Makefile.am (nors): Add \15 to list of chars to delete so
test will run on OS/2 also.
Thu Oct 4 18:34:49 2001 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (membug1): new test case.
* membug1.awk, membug1.in, membug1.ok: new files.
Thu Aug 23 14:04:10 2001 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (minusstr): new test case.
* minusstr.awk, minusstr.ok: new files.
Sat Aug 4 23:42:37 2001 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (arrymem1): new test case.
(compare2): new test case.
(regtest): Make test work, use regtest.sh, not .awk.
* arrymem1.awk, arrymem1.ok: new files.
* compare2.awk, compare2.ok: new files.
Mon Jul 23 17:32:03 2001 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (onlynl): new test case.
* onlynl.awk, onlynl.in, onlynl.ok: new files.
Wed Jun 13 18:12:43 2001 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (ofmtfidl): new test case.
* ofmtfidl.awk, ofmtfidl.in, ofmtfidl.ok: new files.
Sun Jun 3 13:04:44 2001 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.1.0: Release tar file made. And there was
rejoicing.
Sun May 6 13:30:20 2001 Arnold Robbins <arnold@skeeve.com>
* inftest.awk: Changed test to use < so that it will
work for MSC and DJGPP combination, per Scott Deifik.
Tue Mar 20 11:09:51 2001 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (funsemnl): new test case.
* funsemnl.awk, funsemnl.ok: new files.
Wed Mar 7 11:31:41 2001 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (leadnl): new test case.
* leadnl.awk, leadnl.in, leadnl.ok: new files.
Tue Feb 6 18:08:15 2001 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (rebt8b1, rebt8b2): new test case.
* rebt8b1.awk, rebt8b1.ok: new files.
* rebt8b2.awk, rebt8b2.ok: new files.
Sun Dec 3 15:36:41 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (gnuops2): New test case.
* gnuops2.awk, gnuops2.ok: New files, based on bug report from
Servatius.Brandt@fujitsu-siemens.com.
Mon Nov 27 15:52:46 2000 Arnold Robbins <arnold@skeeve.com>
* regx8bit.awk, regx8bit.ok: Updated to what should
work on all systems.
Wed Nov 22 13:27:59 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (poundbang): Added some smarts for /tmp mounted
noexec. Hopefully it'll even work.
Tue Nov 14 17:45:02 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am: Added - to all cmp calls for consistency.
Sun Nov 12 17:50:18 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (addcomma): new test case.
* addcomma.awk, addcomma.in, addcomma.ok: new files.
Tue Nov 7 16:03:06 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (regx8bit, psx96sub): new test cases.
* regx8bit.awk, regx8bit.ok, psx96sub.awk, psx96sub.ok: new files.
Sun Oct 22 12:09:43 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (shadow): new test case.
* shadow.awk, shadow.ok: new files.
Tue Oct 17 10:51:09 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (arynasty): new test case.
* arynasty.awk, arynasty.ok: new files.
Mon Oct 2 10:17:13 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (clsflnam): Add redirect of stderr.
* clsflnam.awk, clsflnam.ok: modified to reflect changed
semantics of close() for a non-open file. See ../ChangeLog.
Sun Sep 24 16:46:29 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (nasty2): new test case.
* nasty2.awk, nasty2.ok: new files.
Wed Sep 13 11:09:49 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (check): Added calls to new targets that
print messages.
(clos1way, basic-msg-start, basic-msg-end, unix-msg-start,
unix-msg-end, extend-msg-start, extend-msg-end): new targets.
* clos1way.awk, clos1way.ok: new files.
Tue Sep 12 16:29:54 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (leaddig): new test case.
* leaddig.awk, leaddig.ok: new files.
Wed Sep 6 14:09:15 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (strtod): new test case.
* strtod.awk, strtod.in, strtod.ok: new files.
Mon Sep 4 09:33:28 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (octsub): new test case.
* octsub.awk, octsub.ok: new files.
Sun Aug 13 12:37:16 2000 Arnold Robbins <arnold@skeeve.com>
* Makefile.am (sort1, diffout): new test cases.
* sort1.awk, sort1.ok: new files.
2000-02-15 Arnold Robbins <arnold@skeeve.com>
* MOVED TO AUTOMAKE AND GETTEXT.
Just about every file touched. Work done by Arno Peters.
Wed May 19 15:41:41 1999 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (datanonl,regeq,redfilnm): new test cases.
* datanonl.awk, datanonl.in, datanonl.ok: new files.
* regeq.awk, regeq.in, regeq.ok: new files.
* redfilnm.awk, redfilnm.in, redfilnm.ok: new files.
Mon May 10 17:11:30 1999 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (rsnul1nl): new test case.
* rsnul1nl.awk, rsnul1nl.in, rsnul1nl.ok: new files.
Sun Apr 25 13:02:35 1999 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (inetechu,inetecht,inetdayu,inetdayt,inet): new
tests, courtesy of Juergen Khars.
(paramtyp): new test for bug from Juergen.
* paramtyp.awk, paramtyp.in: new files.
Sun Oct 25 23:11:46 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (ofmtbig,procinfs): new test cases.
* procinfs.awk, procinfs.ok: new files.
* ofmtbig.awk, ofmtbig.in, ofmtbig.ok: new files.
Tue Oct 20 22:07:10 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (lint): new test case.
* lint.awk, lint.ok: new files.
* badargs.ok: updated output corresponding to change made to
main.c (see main ChangeLog).
Tue May 26 20:39:07 1998 Arnold D. Robbins <arnold@gnu.org>
* pipeio2.awk: change "\'" to "'" to avoid new warning.
Mon Mar 23 21:53:36 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (fnasgnm): new test case.
* fnasgnm.awk, fnasgnm.in, fnasgnm.ok: new files.
Fri Mar 20 11:01:38 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (fnaryscl): new test case.
* fnaryscl.awk, fnaryscl.ok: new files.
Mon Mar 16 15:23:22 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (splitdef): new test case.
* splitdef.awk, splitdef.ok: new files.
Fri Sep 26 01:10:14 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (parseme): new test case.
* parseme.awk, parseme.ok: new files.
Sun Sep 14 23:25:10 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (ofmts): new test case.
* ofmts.awk, ofmts.in, ofmts.ok: new files.
Sun Aug 17 07:17:35 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (fsfwfs): new test case.
* fsfwfs.awk, fsfwfs.in, fsfwfs.ok: new files.
Sun Jul 27 23:08:53 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (hsprint): new test case.
* hsprint.awk, hsprint.ok, printfloat.awk: new files.
Thu Jul 17 20:07:31 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (ofmt): new test case.
* ofmt.awk, ofmt.in, ofmt.ok: new files.
Sun Jun 22 16:17:35 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (nlinstr): new test case.
* nlinstr.awk, nlinstr.in, nlinstr.ok: new files.
Wed Jun 4 13:18:21 1997 Arnold D. Robbins <arnold@gnu.org>
* pid.sh: send errors to /dev/null to toss warning about
using PROCINFO["pid"] etc. This test explicitly tests
the special files. It'll need changing in 3.2.
Thu Apr 24 23:24:59 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (messages): remove special case if /dev/fd exists.
Finally.
Mon Aug 7 15:23:00 2000 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.0.6: Release tar file made.
Thu Aug 3 17:51:56 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (nlstrina): new test case.
* nlstrina.awk, nlstrina.ok: new files.
Tue Jul 11 14:22:55 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (fnparydl): new test case.
* fnparydl.awk, fnparydl.ok: new files.
Fri Jun 30 22:00:03 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (arysubnm): new test case.
* arysubnm.awk, arysubnm.ok: new files.
Sun Jun 25 15:08:19 2000 Arnold D. Robbins <arnold@skeeve.com>
* Release 3.0.5: Release tar file made.
Wed Jun 14 13:17:59 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (getlnbuf): new test case.
* getlnbuf.awk, gtlnbufv.awk, getlnbuf.in, getlnbuf.ok: new files.
Mon Jun 5 15:51:39 2000 Arnold D. Robbins <arnold@skeeve.com>
* pipeio2.awk: Change use of tr to sed, fixes problems
on SCO OS5.
* pipeio2.ok: Updated to reflect use of sed.
Tue May 2 13:28:04 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (strftime): moved test code into a separate
file for the PC guys.
* strftime.awk: new file.
Mon Apr 10 15:58:13 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (longwrds): Add setting LC_ALL=C to sort
call to preserve traditional output. (Theme from the
Twilight Zone plays eerily in the background...)
Sun Apr 2 17:51:40 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (igncdym): new test case.
* igncdym.awk, igncdym.in, igncdym.ok: new files.
Wed Mar 8 13:43:44 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (arynocls): new test case.
* arynocls.awk, arynocls.in, arynocls.ok: new files.
Sun Feb 6 11:45:15 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (opasnidx): new test case.
* opasnidx.awk, opasnidx.ok: new files.
Tue Feb 1 18:40:45 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (opasnslf): new test case.
* opasnslf.awk, opasnslf.ok: new files.
Thu Jan 27 18:09:18 2000 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (subslash): new test case.
* subslash.awk, subslash.ok: new files.
Fri Nov 26 11:03:07 1999 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (numindex): new test case.
* numindex.awk, numindex.in, numindex.ok: new files.
Sun Oct 24 08:46:16 1999 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (strftime): Add tweak for $NF that should
hopefully avoid cygwin problems with lack of timezone.
Thu Jul 29 19:25:02 1999 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.in (fsmnam, fnamedat): new test cases.
* fsmnam.awk, fsmnam.ok: new files.
* fnamedat.awk, fnamedat.in, fnamedat.ok: new files.
Wed Jun 30 16:14:36 1999 Arnold D. Robbins <arnold@gnu.org>
* Release 3.0.4: Release tar file made. This time for sure.
Tue May 25 16:37:50 1999 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (printf1): new test case.
* printf1.awk, printf1.ok: new files.
Wed May 19 15:32:09 1999 Arnold D. Robbins <arnold@gnu.org>
* reg/*: moved exp and log tests to new `Obsolete' directory; they
would only succeed under SunOS 4.x.
Mon May 3 11:53:33 1999 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (gawk.extensions): removed `nondec' until the
associated features get documented in 3.1.
Tue Nov 3 16:46:39 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (getnr2tm, getnr2tb): new test cases.
* getnr2tm.awk, getnr2tm.in, getnr2tm.ok: new files.
* getnr2tb.awk, getnr2tb.in, getnr2tb.ok: new files.
Sun Nov 1 13:20:08 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (zeroflag): new test case.
* zeroflag.awk, zeroflag.ok: new files
Wed Oct 28 18:44:19 1998 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (nasty): new test case.
* nasty.awk, nasty.ok: new files
Sun Nov 16 20:08:59 1997 Arnold D. Robbins <arnold@gnu.org>
* gsubtest.awk, gsubtest.ok: fix for count of matches in gsub
from Geert.Debyser@esat.kuleuven.ac.be.
Sun Nov 16 19:54:50 1997 Arnold D. Robbins <arnold@gnu.org>
* Makefile.in (strftime): fix a typo (LANC -> LANG).
Thu May 15 12:49:08 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Release 3.0.3: Release tar file made.
Tue May 13 12:53:46 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (messages): more testing for OK failure on Linux.
Sun May 11 14:57:11 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (nondec): new test case.
* nondec.awk, nondec.ok: new files.
Sun May 11 07:07:05 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (prdupval): new test case.
* prdupval.awk, prdupval.in, prdupval.ok: new files.
Wed May 7 21:54:34 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (delarprm): new test case.
* delarprm.awk, delarprm.ok: new files.
Wed May 7 17:54:00 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (pid): several fixes from ghazi@caip.rutgers.edu.
Tue May 6 20:28:30 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (strftime): Use the right locale stuff.
(clobber): don't need an input file.
Thu Apr 24 22:24:42 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (pid): new test case, from jco@convex.com.
(specfile): removed test case, pid does it better.
* pid.awk, pid.ok, pid.sh: new files.
* specfile.awk: removed.
Wed Apr 23 23:37:10 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (pipeio2): new test case.
* pipeio2.awk, pipeio2.ok, pipeio2.in: new files.
Sun Apr 20 12:22:52 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (clobber): new test case.
* clobber.awk, clobber.ok: new files.
Fri Apr 18 07:55:47 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* BETA Release 3.0.34: Release tar file made.
Tue Apr 15 05:57:29 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (strftlng): More wizardry for bizarre Unix systems.
(nlfldsep): use program and input file, not shell script
(basic, unix-tests, gawk.extensions): moved specfile, pipeio1
and strftlng into unix-tests per Pat Rankin.
* nlfldsep.awk, nlfldsep.in: new files.
* nlfldsep.sh: removed.
Wed Apr 9 23:32:47 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (funstack): new test case.
* funstack.awk, funstack.in, funstack.ok: new files.
* substr.awk: added many more tests.
* substr.ok: updated
Wed Mar 19 20:10:21 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (pipeio1): new test case.
* pipeio1.awk, pipeio1.ok: new files.
Tue Mar 18 06:38:36 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (noparm): new test case.
* noparm.awk, noparm.ok: new files.
Fri Feb 21 06:30:18 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (reint): new test case.
* reint.awk, reint.in, reint.ok: new files.
Wed Feb 5 18:17:51 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (fnarydel): new test case.
* fnarydel.awk, fnarydel.ok: new files.
Sun Jan 19 17:06:18 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (nors): new test case.
* nors.ok: new file.
Sun Jan 19 17:06:18 1997 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (specfile, strftlng, nfldstr): new test cases.
* specfile.awk, strftlng.awk, strftlng.ok, nfldstr.ok: new files.
Fri Dec 27 11:27:13 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (intest): new test case.
* intest.awk, intest.ok: new files.
Wed Dec 25 11:25:22 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Release 3.0.2: Release tar file made.
Tue Dec 10 23:09:26 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Release 3.0.1: Release tar file made.
Thu Nov 7 09:12:20 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (splitvar): new test case.
* splitvar.awk, splitvar.in, splitvar.ok: new files.
Sun Nov 3 10:55:50 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (nlfldsep): new test case.
* nlfldsep.sh, nlfldsep.ok: new files.
Fri Oct 25 10:29:56 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* rand.awk: call srand with fixed seed.
* rand.ok: new file.
* Makefile.in (rand): changed to compare output with rand.ok.
Sat Oct 19 21:52:04 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (tradanch): new test case.
* tradanch.awk, tradanch.in, tradanch.ok: new files.
Thu Oct 17 21:22:05 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* tweakfld.awk: move `rm' out into Makefile.in.
* eofsplit.awk: fixed buggy code so won't loop forever.
* Makefile.in (all): add unix-tests.
(unix-tests): new target, has pound-bang, fflush, getlnhd.
(basic): removed fflush, getlnhd.
(tweakfld): added rm from tweakfld.awk.
Sun Oct 6 22:00:35 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (back89): new test case.
* back89.in, back89.ok: new files.
Sun Oct 6 20:45:54 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (splitwht): new test case.
* splitwht.awk, splitwht.ok: new files.
Sun Sep 29 23:14:20 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (gsubtest): new test case.
* gsubtest.awk, gsubtest.ok: new files.
Fri Sep 20 11:58:40 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (prtoeval): new test case.
* prtoeval.awk, prtoeval.ok: new files.
Tue Sep 10 06:26:44 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (gsubasgn): new test case.
* gsubasgn.awk, gsubasgn.ok: new files.
Wed Aug 28 22:06:33 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* badargs.ok: updated output corresponding to change made to
main.c (see main ChangeLog).
Thu Aug 1 07:20:28 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (clean): remove out[123] files from `messages' test.
Thanks to Pat Rankin (rankin@eql.caltech.edu).
Sat Jul 27 23:56:57 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (prt1eval): new test case.
* prt1eval.awk, prt1eval.ok: new files.
Mon Jul 22 22:06:10 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (eofsplit): new test case.
* eofsplit.awk, eofsplit.ok: new files.
Sun Jul 14 07:07:45 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (fldchgnf): new test case.
* fldchgnf.awk, fldchgnf.ok: new files.
Tue May 21 23:23:22 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (substr): new test case.
* substr.awk, substr.ok: new files.
Tue May 14 15:05:23 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (dynlj): new test case.
* dynlj.awk, dynlj.ok: new files.
Sun May 12 20:45:34 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (fnarray): new test case.
* fnarray.awk, fnarray.ok: new files.
Fri Mar 15 06:46:48 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (clean): added `*~' to list of files to be removed.
* tweakfld.awk (END): added to do clean up action.
Thu Mar 14 16:41:32 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (mmap8k): new test case.
* mmap8k.in, mmap8k.ok: new files.
Sun Mar 10 22:58:35 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (clsflnam): new test case.
* clsflnam.in, clsflnam.awk, clsflnam.ok: new files.
* tweakfld.awk: changed to have a fixed date.
Thu Mar 7 09:56:09 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (tweakfld): new test case.
* tweakfld.in, tweakfld.awk, tweakfld.ok: new files.
Sun Mar 3 06:51:26 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (getlnhd, backgsub) : new test cases.
* getlnhd.awk, getlnhd.ok: new files.
* backgsub.in, backgsub.awk, backgsub.ok: new files.
Mon Feb 26 22:30:02 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (sprintfc): new test case.
* sprintfc.in, sprintfc.awk, sprintfc.ok: new files.
* gensub.awk: updated for case of no match of regex.
Wed Jan 24 10:06:16 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* Makefile.in (distclean, maintainer-clean): new targets.
(reindops): added test from Rick Adams (rick@uunet.uu.net).
(arrayparm, paramdup, defref, strftime, prmarscl, sclforin,
sclifin): Fix from Larry Schwimmer (schwim@cyclone.stanford.edu)
so that tests that are supposed to fail use `... || exit 0' to
cause a clean `make clean'.
Wed Jan 10 22:58:55 1996 Arnold D. Robbins <arnold@skeeve.atl.ga.us>
* ChangeLog created.
|