Tag
Hash :
ba8a917b
Author :
Date :
1999-04-11T21:11:04
* subobj2.test: New file. * Makefile.am (TESTS): Added subobj2.test.
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
1999-04-11 Tom Tromey <tromey@cygnus.com>
* subobj2.test: New file.
* Makefile.am (TESTS): Added subobj2.test.
* subobj.test: New file.
* Makefile.am (TESTS): Added subobj.test.
* confh.test: Use `sed' to extract full definition of
DIST_COMMON. Look for stamp-h.in rule in include/Makefile.in.
* Makefile.am (XFAIL_TESTS): Removed confh.test.
1999-04-10 Tom Tromey <tromey@cygnus.com>
* defs: Ensure srcdir is always absolute.
* Makefile.am (XFAIL_TESTS): Removed cond8.test.
* gcj2.test: New file.
* Makefile.am (TESTS): Added gcj2.test.
1999-04-10 Alexandre Oliva <oliva@dcc.unicamp.br>
* suffix.test: New file.
* Makefile.am: Added suffix.test.
* Makefile.am (XFAIL_TESTS): Added cond8.test.
* cond3.test: Refer to am_targ_OBJECTS.
* yacc2.test, yacc3.test: New files.
* Makefile.am (TESTS): Added yacc2.test and yacc3.test.
1999-04-09 Tom Tromey <tromey@cygnus.com>
* nodist.test: New file.
* Makefile.am (TESTS): Added nodist.test.
* gcj.test: New file.
* Makefile.am (TESTS): Added gcj.test.
1999-04-08 Tom Tromey <tromey@cygnus.com>
* cond8.test: New file.
* Makefile.am (TESTS): Added cond8.test.
1999-04-07 Alexandre Oliva <oliva@dcc.unicamp.br>
* backsl2.test: New file.
* Makefile.am (TESTS): Added backsl2.test.
* texinfo8.test: texinfo.tex is only disted by aux/Makefile.
* texinfo8.test: New file.
* Makefile.am (TESTS): Added texinfo8.test.
1999-03-31 Tom Tromey <tromey@cygnus.com>
* pluseq2.test, pluseq3.test: Updated for recent \-preservation
change.
1999-03-31 Alexandre Oliva <oliva@dcc.unicamp.br>
* Makefile.am (XFAIL_TESTS): add confh.test
1999-03-30 Tom Tromey <tromey@cygnus.com>
* mclean.test: Fixed typo.
* mclean.test: New file.
* Makefile.am (TESTS): Added mclean.test.
1999-03-30 Alexandre Oliva <oliva@dcc.unicamp.br>
* confh.test: if include/Makefile.am is created, the test fails
1999-03-27 Tom Tromey <tromey@cygnus.com>
* extra4.test: Allow EXTRA_DATA to be specified.
1999-03-22 Tom Tromey <tromey@cygnus.com>
* ldadd.test: Use AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL.
* pluseq7.test: New file.
* Makefile.am (TESTS): Added pluseq7.test.
* pluseq6.test: New file.
* Makefile.am (TESTS): Added pluseq6.test.
1999-03-21 Tom Tromey <tromey@cygnus.com>
* nodep.test: New file.
* Makefile.am (TESTS): Added nodep.test.
* subdir3.test: Correctly mention _SOURCES in Makefile.am.
* subdir3.test: New file.
* Makefile.am (TESTS): Added subdir3.test.
* xsource.test: Changed to check whether multiple source files
with same object name cause failure.
1999-03-11 Tom Tromey <tromey@cygnus.com>
* libobj9.test: New file.
* Makefile.am (TESTS): Added libobj9.test.
* insthook.test: Don't require GNU grep. From John Pierce.
* lex3.test: New file.
* Makefile.am (TESTS): Added lex3.test.
1999-03-01 Tom Tromey <tromey@cygnus.com>
* ansi3.test: Use no-dependencies option to avoid GNU make
requirement. From Jerome Lovy.
1999-02-27 Tom Tromey <tromey@cygnus.com>
* ext.test (foo_SOURCES): New file.
* Makefile.am (TESTS): Added ext.test.
1999-02-11 Tom Tromey <tromey@cygnus.com>
* cygwin32.test: Use AC_EXEEXT, not AM_EXEEXT.
* obsolete2.test: New file.
* Makefile.am (TESTS): Added obsolete2.test.
1999-02-01 Tom Tromey <tromey@cygnus.com>
* installsh.test (AUTOMAKE): Use $PERL. From Pavel Roskin.
* cond5.test: Sleep 15 seconds, not 5. Some people still run the
test on slow machines.
1999-01-22 Tom Tromey <tromey@cygnus.com>
* copy.test: New file.
* Makefile.am (TESTS): Added copy.test.
* ppf77.test: New file.
* Makefile.am (TESTS): Added ppf77.test.
1999-01-14 Tom Tromey <tromey@cygnus.com>
* confh3.test: New file.
* Makefile.am (TESTS): Added confh3.test.
* confh2.test: New file.
* Makefile.am (TESTS): Added confh2.test.
* confh.test: Run automake differently the second time.
* mdate3.test: New file.
* Makefile.am (TESTS): Added mdate3.test.
1999-01-11 Tom Tromey <tromey@cygnus.com>
* confh.test: New file.
* Makefile.am (TESTS): Added confh.test.
1999-01-10 Tom Tromey <tromey@cygnus.com>
* objc.test: Updated to account for new ObjC support.
* pluseq5.test: New file.
* Makefile.am (TESTS): Added pluseq5.test.
* all.test: Test all *-local targets, not just all-local.
* all.test: New file.
* Makefile.am (TESTS): Added all.test.
1999-01-07 Tom Tromey <tromey@cygnus.com>
* include.test: New file.
* Makefile.am (TESTS): Added include.test.
1998-12-21 Tom Tromey <tromey@cygnus.com>
* insthook.test: Updated to fail when it should.
1998-12-11 Tom Tromey <tromey@cygnus.com>
* insthook.test: New file.
* Makefile.am (TESTS): Added insthook.test.
1998-11-27 Tom Tromey <tromey@cygnus.com>
* cond7.test: New file. From Pavel Roskin.
* Makefile.am (TESTS): New file.
1998-11-10 Tom Tromey <tromey@cygnus.com>
* pluseq4.test: New file.
* Makefile.am (TESTS): Added pluseq4.test.
1998-11-09 Tom Tromey <tromey@cygnus.com>
* pluseq3.test: New file.
* Makefile.am (TESTS): Added pluseq3.test.
* pluseq2.test: New file.
* Makefile.am (TESTS): Added pluseq2.test.
1998-10-30 Tom Tromey <tromey@cygnus.com>
* pluseq.test: New file.
* Makefile.am (TESTS): Added pluseq.test.
1998-10-28 Tom Tromey <tromey@cygnus.com>
* Makefile.am (distclean-local): Typo fix.
1998-10-20 Tom Tromey <tromey@cygnus.com>
* Makefile.am (TESTS): Sorted tests. From Jeff Garzik.
1998-10-13 Tom Tromey <tromey@cygnus.com>
* libobj7.test: Updated to reflect minor change in automake (test
wasn't resilient enough).
* instman.test: Updated to reflect fact that mkinstalldirs will be
in distribution.
* cxxonly.test: Removed.
Mon Aug 31 09:46:59 1998 Matthew D. Langston <langston@SLAC.Stanford.EDU>
* Makefile.am (TESTS): Added compile_f_c_cxx.test.
* compile_f_c_cxx.test: New file.
Sat Aug 29 18:17:58 1998 Matthew D. Langston <langston@SLAC.Stanford.EDU>
* Makefile.am (TESTS): Added flink.test link_c_cxx.test
link_f_c.test link_f_c_cxx.test link_f_cxx.test link_f_only.test.
Removed flink.test.
* flibs.test: New File.
* link_c_cxx.test: New file.
* link_f_c.test: New file.
* link_f_c_cxx.test: New file.
* link_f_cxx.test: New file.
* link_f_only.test: New file.
Tue Aug 11 10:46:36 1998 Matthew D. Langston <langston@SLAC.Stanford.EDU>
* Makefile.am (TESTS): Add cxxonly.test, fonly.test, flink.test,
fnoc.test and fo.test.
* cxxonly.test: New file.
* fonly.test: New file.
* flink.test: New file.
* fnoc.test: New file.
* fo.test: New file.
1998-10-08 Tom Tromey <tromey@cygnus.com>
* confdist.test: New file.
* Makefile.am (TESTS): Added confdist.test.
1998-10-07 Tom Tromey <tromey@cygnus.com>
* extra4.test: New file.
* extra3.test: New file.
* Makefile.am (TESTS): Added extra3.test, extra4.test.
Mon Oct 5 12:47:32 1998 Tom Tromey <tromey@cygnus.com>
* badline.test: New file.
* Makefile.am (TESTS): Added badline.test.
Thu Oct 1 00:03:39 1998 Tom Tromey <tromey@cygnus.com>
* seenc.test: Updated test to account for removed line numbers.
* xsource.test: Correctly fail if source in subdir.
Wed Sep 30 12:17:34 1998 Tom Tromey <tromey@cygnus.com>
* colon7.test: New file.
* Makefile.am (TESTS): Added colon7.test.
Tue Sep 29 02:09:11 1998 Tom Tromey <tromey@cygnus.com>
* config.test: New file.
* Makefile.am (TESTS): Added config.test.
* Makefile.am (TESTS): Reference clean.test, not clean.am.
Mon Sep 28 01:46:34 1998 Tom Tromey <tromey@cygnus.com>
* recurs2.test: New file, from Jim Meyering.
* Makefile.am (TESTS): Added recurs2.test.
* Makefile.am (TESTS): Added clean.am.
* clean.test: New file.
* ansi2.test: Updated test for new SUBDIRS change.
* noinst.test: Updated test for new SUBDIRS change.
* checkall.test: Added check to make sure check-local is handled.
Updated test for new SUBDIRS change.
* java.test: Updated test for new SUBDIRS change.
Sun Sep 27 20:01:20 1998 Tom Tromey <tromey@cygnus.com>
* Makefile.am (TESTS): Added else.test.
* else.test: New file.
* Makefile.am (TESTS): Added parse.test.
* parse.test: New file.
Sat Sep 26 19:17:43 1998 Tom Tromey <tromey@cygnus.com>
* aclocal.test: Put AM_INIT_AUTOMAKE into configure.in.
* library.test: Use AC_EXEEXT.
* texinfo5.test: Use AC_EXEEXT.
* Many files: use AC_PROG_INSTALL, not AM_PROG_INSTALL.
Test suite updates for the @SHELL@ change:
* exsource.test: Set SHELL on `make' command line.
* ansi.test: Set SHELL on `make' command line.
* texinfo.test: Set SHELL on `make' command line.
* insh2.test: Set SHELL on `make' command line.
* empty.test: Rewrite @SHELL@ to /bin/sh.
Tue Sep 22 01:20:00 1998 Tom Tromey <tromey@cygnus.com>
* ansi3.test: Use gcc and not gcc -traditional.
Tue Sep 15 22:19:48 1998 Tom Tromey <tromey@cygnus.com>
* texinfo7.test: New file.
Sun Aug 16 23:17:38 1998 Tom Tromey <tromey@cygnus.com>
* colon6.test: New file.
Fri Aug 14 11:09:03 1998 Tom Tromey <tromey@cygnus.com>
* cond6.test: New file.
Mon Aug 10 21:05:15 1998 Tom Tromey <tromey@cygnus.com>
* ansi3.test: New file.
Sat Jul 18 00:27:26 1998 Tom Tromey <tromey@cygnus.com>
* recurs.test: New file.
* cond3.test: Changed to match recent fixes.
Fri Jul 17 23:44:49 1998 Tom Tromey <tromey@cygnus.com>
* cond4.test, cond5.test: New files.
Tue May 26 01:44:37 1998 Tom Tromey <tromey@cygnus.com>
* syntax.test: New file.
Sun Apr 5 15:26:42 1998 Tom Tromey <tromey@cygnus.com>
* version3.test: Increased version number to ensure failure for a
long time to come.
* library.test: New file.
* lex2.test: Updated since lex error changed to warning.
Fri Apr 3 13:04:50 1998 Tom Tromey <tromey@cygnus.com>
* colon5.test: New file.
* exdir2.test: New file.
* instdata.test: New file.
Wed Mar 25 15:30:39 1998 Tom Tromey <tromey@cygnus.com>
* badopt.test: new file.
* version3.test: New file.
Mon Mar 23 10:52:36 1998 Tom Tromey <tromey@cygnus.com>
* libobj8.test: New file.
Fri Mar 20 00:32:16 1998 Tom Tromey <tromey@cygnus.com>
* lex2.test: New file.
* aclocalii.test: New file.
* javasubst.test: New file.
Thu Mar 19 14:11:45 1998 Tom Tromey <tromey@cygnus.com>
* javaprim.test: New file.
* sinclude.test: New file.
Wed Mar 18 17:15:22 1998 Tom Tromey <tromey@cygnus.com>
* java.test: New file.
Sun Mar 8 15:35:14 1998 Tom Tromey <tromey@cygnus.com>
* colon4.test: New file.
Fri Mar 6 21:17:10 1998 Tom Tromey <tromey@cygnus.com>
* colon3.test: Refined tests.
Tue Feb 24 12:29:05 1998 Tom Tromey <tromey@cygnus.com>
* man.test: Removed.
* condman2.test: New file.
Mon Feb 23 16:20:49 1998 Tom Tromey <tromey@cygnus.com>
* texinfo6.test: New file.
Mon Feb 16 00:08:58 1998 Tom Tromey <tromey@cygnus.com>
* aclocali.test: New file.
Fri Feb 13 00:36:38 1998 Tom Tromey <tromey@cygnus.com>
* texinfo5.test (info_TEXINFOS): New file.
* condman.test: New file.
* Makefile.am (distclean-local): Ignore rm return value.
Thu Feb 12 21:00:34 1998 Tom Tromey <tromey@cygnus.com>
* unused.test: New file.
* whoami.test: New file.
* alpha.test: New file.
Wed Feb 11 17:28:30 1998 Tom Tromey <tromey@cygnus.com>
* aclocal.test: New file.
Thu Feb 5 13:22:17 1998 Tom Tromey <tromey@cygnus.com>
* cxxcpp.test: New file.
Mon Dec 1 15:48:16 1997 Tom Tromey <tromey@cygnus.com>
* cond3.test: New file.
Sat Nov 29 22:09:27 1997 Tom Tromey <tromey@cygnus.com>
* objc.test: New file.
Sat Oct 25 00:04:04 1997 Tom Tromey <tromey@cygnus.com>
* libobj7.test: New file.
Tue Oct 21 00:46:24 1997 Tom Tromey <tromey@cygnus.com>
* lex2.test: Removed; @LEXLIB@ no longer required.
* depacl2.test: Use -I, not --acdir.
* install.test: New file.
* ammissing.test: New file.
Sun Sep 28 17:19:52 1997 Tom Tromey <tromey@cygnus.com>
* cxxnoc.test: Changed to reflect MKDEP change.
Wed Sep 24 16:01:59 1997 Tom Tromey <tromey@cygnus.com>
* output5.test: New file.
* depend3.test: New file.
Mon Aug 25 17:24:42 1997 Tom Tromey <tromey@cygnus.com>
* cygwin32.test: Use AM_EXEEXT, not AM_CYGWIN32.
Tue Aug 5 20:33:33 1997 Tom Tromey <tromey@cygnus.com>
* libobj6.test: New file.
Mon May 26 22:47:36 1997 Tom Tromey <tromey@cygnus.com>
* depend.test: Fixed test.
Sat May 10 18:28:14 1997 Tom Tromey <tromey@cygnus.com>
* depend2.test: Fixed test; added another check.
Sun May 4 15:47:24 1997 Tom Tromey <tromey@cygnus.com>
* xsource.test: New file.
Tue Apr 29 19:08:47 1997 Tom Tromey <tromey@cygnus.com>
* cond.test, cond2.test: New files from Ian Taylor.
Sun Apr 27 21:07:49 1997 Tom Tromey <tromey@cygnus.com>
* confsub.test: Fixed bug.
Fri Apr 25 12:30:22 1997 Tom Tromey <tromey@cygnus.com>
* conf2.test: New file.
Tue Apr 8 19:26:07 1997 Tom Tromey <tromey@cygnus.com>
* ansi.test, empty.test, exsource.test, insh2.test, man.test,
mkinst2.test, texinfo.test, texinfo2.test: Use $MAKE.
* defs (MAKE): Define.
Mon Apr 7 17:35:49 1997 Tom Tromey <tromey@cygnus.com>
* version2.test: New file.
Wed Apr 2 00:12:26 1997 Tom Tromey <tromey@cygnus.com>
* ldadd.test: New file.
Fri Mar 28 23:36:04 1997 Tom Tromey <tromey@cygnus.com>
* stamph.test: New file.
Thu Mar 27 18:10:47 1997 Tom Tromey <tromey@cygnus.com>
* lisp.test: New file.
Sat Mar 22 01:14:03 1997 Tom Tromey <tromey@cygnus.com>
* cygwin32.test: New file.
Thu Mar 20 00:34:33 1997 Tom Tromey <tromey@cygnus.com>
* exsource.test: Exit if not using GNU make.
Tue Mar 18 22:36:34 1997 Tom Tromey <tromey@cygnus.com>
* remake2.test: Changed for `missing' support.
Sun Mar 16 14:29:45 1997 Tom Tromey <tromey@cygnus.com>
* seenc.test: New file.
* checkall.test, noinst.test: Don't use bogus construct when
checking.
* libobj3.test, canon.test, target.test, spell2.test,
primary2.test, discover.test, lex2.test: Fixed to test what it
claims to test.
Mon Mar 10 23:21:03 1997 Tom Tromey <tromey@cygnus.com>
* libobj.test, libobj2.test: Use AC_PROG_CC.
* confsub.test: Modified for definition of CONFIG_HEADER_FULL.
* cxxlibobj.test: New file.
Wed Feb 26 13:05:42 1997 Tom Tromey <tromey@cygnus.com>
* tagsub.test: New file.
Sun Feb 23 11:58:00 1997 Tom Tromey <tromey@cygnus.com>
* texinfo.test, texinfo2.test, texinfo3.test, info.test,
mdate.test, vtexi.test, canon2.test, mdate2.test, vtexi2.test:
Updated for new texinfo handling.
* texinfo4.test: New file.
* texinfo3.test: New file.
Sat Feb 22 09:48:44 1997 Tom Tromey <tromey@cygnus.com>
* yaccpp.test: New file.
Tue Feb 11 09:51:47 1997 Tom Tromey <tromey@cygnus.com>
* texinfo2.test: Fixed quoting bug. From Michael Brantley.
Tue Feb 4 18:41:32 1997 Tom Tromey <tromey@cygnus.com>
* confsub.test: Check subdir/Makefile.in to make sure dependency
is correct.
* ansi2.test: ANSI2KNR dependency of all.
Tue Dec 10 00:43:14 1996 Tom Tromey <tromey@cygnus.com>
* defun2.test: New file.
* subst.test: New file.
Sun Dec 8 12:25:22 1996 Tom Tromey <tromey@cygnus.com>
* colneq2.test: New file.
Sat Dec 7 12:52:45 1996 Tom Tromey <tromey@cygnus.com>
* output4.test: New file.
* output3.test: New file.
* remake2.test: New file.
* output2.test: New file.
Fri Dec 6 19:00:31 1996 Tom Tromey <tromey@cygnus.com>
* output.test: New file.
Thu Dec 5 18:23:17 1996 Tom Tromey <tromey@cygnus.com>
* remake.test: New file.
* colon3.test: New file.
* colon2.test: New file.
* cxxo.test: New file.
Wed Dec 4 00:41:44 1996 Tom Tromey <tromey@cygnus.com>
* defs: Allow user to set interpreter via PERL environment
variable.
* Makefile.am (distclean-local): New target.
Tue Dec 3 11:55:18 1996 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
* dup.test, dup2.test: Modified, now that aclocal allows
acinclude.m4 to override any installed macro file.
Mon Dec 2 22:44:16 1996 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
* alllib.test: Removed from distribution, since LIBFILES are no
longer computed.
Sun Nov 24 14:36:00 1996 Tom Tromey <tromey@cygnus.com>
* extra2.test: New file.
Fri Nov 22 00:10:04 1996 Tom Tromey <tromey@cygnus.com>
* stdlib.test: New file.
Thu Nov 21 22:51:35 1996 Tom Tromey <tromey@cygnus.com>
* confsub.test: Use AM_CONFIG_HEADER.
Tue Nov 19 23:37:32 1996 Tom Tromey <tromey@cygnus.com>
* confvar2.test: New file.
Fri Nov 15 00:09:18 1996 Tom Tromey <tromey@cygnus.com>
* ansi2.test: New file.
* libfiles.test: Removed (obsolete).
* libobj.test, canon4.test, libobj2.test, alllib.test,
ranlib.test: Fixed for Gord's changes to library handling.
* Many files: Use AC_PROG_CC to avoid error.
Thu Oct 24 15:22:53 1996 Tom Tromey <tromey@cygnus.com>
* confvar.test: New file.
* ranlib.test: New file.
Mon Oct 21 22:57:51 1996 Tom Tromey <tromey@cygnus.com>
* version.test: New file.
Fri Oct 11 00:51:04 1996 Tom Tromey <tromey@cygnus.com>
* libobj5.test: New file.
* libobj4.test: New file.
* distdir.test: New file.
* lex2.test: New file.
Sun Oct 6 11:00:44 1996 Tom Tromey <tromey@cygnus.com>
* acsilent.test: New file.
* req.test: New file.
* acinclude.test: New file.
Sat Oct 5 11:31:38 1996 Tom Tromey <tromey@cygnus.com>
* discover.test: New file.
* mkinst2.test: Renamed from mkinstall2.test.
* symlink.test: New file.
Thu Oct 3 19:55:23 1996 Tom Tromey <tromey@cygnus.com>
* vpath.test: New file.
Mon Sep 30 08:34:07 1996 Tom Tromey <tromey@cygnus.com>
* comment2.test: New file.
Mon Sep 23 00:23:34 1996 Tom Tromey <tromey@creche.cygnus.com>
* spell3.test: New file.
Sun Sep 22 14:42:09 1996 Tom Tromey <tromey@creche.cygnus.com>
* depend2.test: New file.
Sat Sep 21 14:01:10 1996 Tom Tromey <tromey@creche.cygnus.com>
* primary2.test: New file.
* primary.test: New file.
Fri Sep 20 09:39:27 1996 Tom Tromey <tromey@creche.cygnus.com>
* confsub.test: New file.
Mon Sep 16 00:05:52 1996 Tom Tromey <tromey@creche.cygnus.com>
* spell2.test: New file.
* spell.test: New file.
Thu Sep 12 14:57:49 1996 Tom Tromey <tromey@creche.cygnus.com>
* implicit.test: New file.
Wed Sep 11 13:57:10 1996 Tom Tromey <tromey@creche.cygnus.com>
* colneq.test: New file.
* interp2.test: New file.
Sun Sep 8 10:47:07 1996 Tom Tromey <tromey@creche.cygnus.com>
* gnits.test: New file.
Thu Sep 5 22:54:26 1996 Tom Tromey <tromey@creche.cygnus.com>
* libobj3.test: New file.
Tue Sep 3 20:57:38 1996 Tom Tromey <tromey@creche.cygnus.com>
* block.test: New file.
Mon Aug 26 23:04:01 1996 Tom Tromey <tromey@creche.cygnus.com>
* alllib.test: New file.
* interp.test: New file.
Mon Aug 12 13:58:55 1996 Tom Tromey <tromey@creche.cygnus.com>
* libobj2.test: New file.
* order.test: New file.
Sun Aug 11 00:10:42 1996 Tom Tromey <tromey@creche.cygnus.com>
* cxxnoc.test: New file.
* cxxlink.test: Use AC_PROG_CXX.
* lex.test: Use AC_PROG_LEX, AC_DECL_YYTEXT.
* yacc.test: Use AC_PROG_YACC in configure.in.
* cxxlink.test: New file.
* yacc.test: Fixed test for new yacc code.
Sat Aug 10 10:09:45 1996 Tom Tromey <tromey@creche.cygnus.com>
* defun.test: New file.
* dup.test: New file.
Fri Aug 9 09:18:07 1996 Tom Tromey <tromey@creche.cygnus.com>
* canon4.test: New file.
Thu Aug 8 10:47:45 1996 Tom Tromey <tromey@creche.cygnus.com>
* exsource.test: New file.
* subdir2.test: New file.
* scripts.test: New file.
Tue Aug 6 12:30:41 1996 Tom Tromey <tromey@creche.cygnus.com>
* lex.test: New file.
Mon Aug 5 01:03:03 1996 Tom Tromey <tromey@creche.cygnus.com>
* obsolete.test: New file.
* Many files: Use AM_ macros, not fp_ macros.
* info.test: New file.
Sun Aug 4 12:47:34 1996 Tom Tromey <tromey@creche.cygnus.com>
* man.test: New file.
* acouttbs2.test: New file.
* libfiles.test: New file.
* comment.test: New file.
* tags.test: New file.
* vtexi2.test: New file.
* colon.test: New file.
Sun Jul 28 11:43:00 1996 Tom Tromey <tromey@creche.cygnus.com>
* defs (ACLOCAL): Added definition.
* depacl.test, depacl2.test, error.test: New tests for aclocal.
Fri Jul 19 10:09:56 1996 Tom Tromey <tromey@creche.cygnus.com>
* ansi.test: New file.
Sun Jun 9 23:20:03 1996 Tom Tromey <tromey@creche.cygnus.com>
* texinfo2.test: New file.
Sat Jun 8 10:00:42 1996 Tom Tromey <tromey@creche.cygnus.com>
* mkinstall2.test: New file.
Fri Jun 7 18:17:11 1996 Tom Tromey <tromey@creche.cygnus.com>
* yacc.test: New file.
Sun Jun 2 09:04:52 1996 Tom Tromey <tromey@creche.cygnus.com>
* dejagnu.test: New file.
* texinfo.test: New file.
Thu May 23 09:58:48 1996 Tom Tromey <tromey@creche.cygnus.com>
* fpinst2.test: New file.
* fpinstall.test: New file.
Wed May 22 09:45:52 1996 Tom Tromey <tromey@creche.cygnus.com>
* outdir.test: New file.
Sat May 18 10:51:37 1996 Tom Tromey <tromey@creche.cygnus.com>
* insh2.test: New file.
Fri May 17 17:32:35 1996 Tom Tromey <tromey@creche.cygnus.com>
* number.test: New file.
* defs, many .test files: Define PACKAGE and VERSION in
configure.in.
* package.test: New file.
* backsl.test: New file.
Thu May 16 09:15:57 1996 Tom Tromey <tromey@creche.cygnus.com>
* subdir.test: New file.
Tue May 14 10:17:17 1996 Tom Tromey <tromey@creche.cygnus.com>
* mdate2.test: New file, from report by Jim Meyering.
* canon3.test: New file.
* auxdir.test: New file.
* mkinstall.test: New file.
* extra.test: Reversed sense of test.
Fri Apr 26 15:15:01 1996 Tom Tromey <tromey@creche.cygnus.com>
* instman.test: New file.
Thu Apr 25 17:12:30 1996 Tom Tromey <tromey@creche.cygnus.com>
* noinst.test: New file
* exdir.test: Quoting change from Gord Matzigkeit.
* extra.test (EXTRA_PROGRAMS): New file.
Tue Apr 9 22:55:07 1996 Tom Tromey <tromey@creche.cygnus.com>
* target.test: New file.
Wed Apr 3 15:10:54 1996 Tom Tromey <tromey@creche.cygnus.com>
* canon2.test: New file
* insh.test: New file.
Wed Mar 27 23:31:51 1996 Tom Tromey <tromey@creche.cygnus.com>
* rulepat.test: New file.
Sat Mar 16 08:37:36 1996 Tom Tromey <tromey@creche.cygnus.com>
* empty.test: New file.
Fri Mar 15 17:55:13 1996 Tom Tromey <tromey@creche.cygnus.com>
* installsh.test: New file.
Tue Mar 5 16:22:46 1996 Tom Tromey <tromey@creche.cygnus.com>
* badprog.test: Rewrote.
* canon.test: New file.
Mon Mar 4 21:08:37 1996 Tom Tromey <tromey@creche.cygnus.com>
* exdir.test: New file.
Fri Mar 1 17:23:53 1996 Tom Tromey <tromey@creche.cygnus.com>
* depend.test: New file.
* badprog.test: New file.
* defs (AUTOMAKE): Pass --foreign.
Thu Feb 29 20:23:42 1996 Tom Tromey <tromey@creche.cygnus.com>
More tests:
* prefix.test: New file.
* spelling.test: New file
* confincl.test: New file.
* Makefile.am (TESTS): Updated.
Wed Feb 28 11:57:02 1996 Tom Tromey <tromey@creche.cygnus.com>
* acoutqnl.test: New file.
* Makefile.am (TESTS): Include it.
Tue Feb 27 10:52:58 1996 Tom Tromey <tromey@creche.cygnus.com>
* Makefile.am (DIST_OTHER): Include "defs".
* defs (AUTOMAKE): Never relative to $srcdir.
Mon Feb 26 23:14:08 1996 Tom Tromey <tromey@creche.cygnus.com>
* libobj.test: Put AC_PROG_RANLIB in configure.in
Mon Feb 19 08:22:22 1996 Tom Tromey <tromey@creche.cygnus.com>
* proginst.test: New file.
Tue Feb 13 18:54:39 1996 Tom Tromey <tromey@creche.cygnus.com>
* libobj.test: New file.
Mon Feb 12 17:05:48 1996 Tom Tromey <tromey@creche.cygnus.com>
* acouttbs.test: New file.
* Makefile.am (DIST_OTHER): New variable.
* acoutnoq.test: New file.
Sun Feb 11 16:39:14 1996 Tom Tromey <tromey@creche.cygnus.com>
* checkall.test: Delay a little.
* Makefile.am (check-local): Print name of failing test.
Sat Feb 10 17:08:39 1996 Tom Tromey <tromey@creche.cygnus.com>
* checkall.test: New file.
* instexec.test: New file.
* mdate.test, vtexi.test, acoutput.test: New files.
* Started.