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
|
2023-07-10 Simon Sobisch <simonsobisch@gnu.org>
* atlocal_win: updated to current atlocal.in
* atlocal.in: include valgrind (memcheck, sgcheck) testing, enabled
by specifying VGSUFFIX in the environment
* atlocal_valgrind: deleted
* Makefile.am (dist): distributing valgrind.supp (for use in the testsuite)
* Makefile.am (clean): clean folders created while running the testsuite
though various tools
2023-07-04 Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>
* atlocal.in: add variables LISTING_FLAGS, COMPILE_LISTING and
COMPILE_LISTING0 to use new flags -fno-ttimestamp and -fttitle
to remove the need for UNIFY_LISTING in listings.at
2023-04-05 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: to allow running some test parts thousands of time for
performance checks without burning energy on every build, add define
"CHECK-PERF" if one of PERFSUFFIX or CGSUFFIX are set,
or if --enable-debug was specified during configure
* testsuite.src: adjusted several tests to use that option
2023-02-21 Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>
* testsuite.src/syn_literals.at: move syntax checks on literals
from syn_misc.at to a new file syn_literals.at
2023-02-06 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win: do not unset OS
as this is an external var we need to keep for win32
* atlocal_valgrind, atlocal_win: added notes for things we
explicit don't want to do
* testsuite.src/run_file.at: skip OS recognition on cygwin
* testsuite.src/run_misc.at: fix linking/dlopen issue happening
on some systems (mostly win32) in test CALL RETURNING POINTER
2023-01-23 David Declerck <david.declerck@ocamlpro.com>
* testsuite.src/configuration.at: test reading translation
tables from an external file
2022-12-08 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_win, atlocal_valgrind: added COB_MODULE_EXT
2022-12-02 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_win: do not disable PDCurses screenio
when executed as part of testsuite_manual (make checkmanual)
* atlocal_valgrind: drop win32 parts as valgrind does not work there
2022-11-18 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/syn_misc.at, testsuite.src/syn_value.at: moved
OCCURS too many VALUES to syn_value.at
2022-11-06 Simon Sobisch <simonsobisch@gnu.org>
* run_prog_manual.sh.in (_test_with_cmd): fixed escaping for "tr"
* Makefile.am: moved $(TESTSUITE) $(TESTSUITE_MANUAL) from EXTRA_DIST
to dist_noinst_SCRIPTS
2022-10-11 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind: adjusted perf and valgrind runs
to export PATH to real binaries for calling cobc/cobcrun directly
* atlocal.in: for perf run split cobc and cobcrun by log directory
instead of filename only, default COBC to include debug infos
* atlocal.in: added callgrind run for in-depth performance checks
which can be activated by setting CGSUFFIX variable
2022-09-30 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_extensions.at, testsuite.src/run_file.at: moved
LINE SEQUNTIAL related tests to run_file.at
* testsuite.src/run_misc.at, testsuite.src/run_extensions.at: moved
INSPECT ... TRAILING and EXAMINE related tests to run_extensions.at
2022-09-21 Simon Sobisch <simonsobisch@gnu.org>
* atlocal_valgrind, atlocal_win: updated to match atlocal.in
2022-07-19 Nicolas Berthier <nicolas.berthier@ocamlpro.com>
* testsuite.src/general: fix area A in testsuite
2022-03-29 Nicolas Berthier <nicolas.berthier@ocamlpro.com>
* testsuite.src/configuration.at, testsuite.at/syn_misc.at: new
tests for sections and paragraphs that do not end with a period
* testsuite.src/run_misc.at: fix lines in trace test
2022-07-28 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: option to run part of the testsuite via perf -stat
to check for performance (enabled for runtime only by default),
which can be activated by setting PERFSUFFIX variable
* Makefile.am: additional dependencies atlocal and
run_prog_manual.sh where used
* testsuite.src: added missing $COBCRUN_DIRECT
2022-03-29 Nicolas Berthier <nicolas.berther@ocamlpro.com>
* testsuite.src/syn_copy.at: test partial replacing with SPACES
figurative constant
2022-01-25 Nicolas Berthier <nicolas.berther@ocamlpro.com>
* testsuite.src/syn_copy.at: test partial replacing with literal
2022-02-10 Simon Sobisch <simonsobisch@gnu.org>
* testsuite_manual.at [MANUAL_CHECK]: new macro for running every
manual test, executes the test runner, passing the test description
from the testsuite
* testsuite.src/run_manual_screen.at: use of MANUAL_CHECK instead of
AC_CHECK, use COBRUN_DIRECT for running the tests with additional tools
* run_prog_manual.sh.in: use DESC as title for the terminal;
also use title for running with GNU screen (by default NOT visible)
2021-12-03 Simon Sobisch <simonsobisch@gnu.org>
* run_prog_manual.sh.in: added option to test from MSYS
which starts a detached cmd prompt (similar to xterm)
2021-11-06 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/listings.at: ignore all stderr in listing tests
as those are checked via the listing output there
2021-09-28 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: workaround for MSYS issues
* listings-sed.sh: adjusted replacement to actually check the year and
convert the final timestamp in default format to ANSI format
for matching testsuite reference
2021-08-29 Ron Norman <rjn@inglenet.com>
* testsuite.src/run_file.at: Add more EXTFH test cases
2020-12-20 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_extensions.at, testsuite.src/run_file.at:
moved ASSIGN related tests to run_file.at
* testsuite.src/run_misc.at: work around bug for CANCEL in test
"Recursive CALL of RECURSIVE program" by disabling that side-tests
2020-11-30 James K. Lowden <jklowden@symas.com>
* testsuite.src/run_misc.at: correct for 32-bit in
"Test dump feature (2)"
2020-11-21 Simon Sobisch <simonsobisch@gnu.org>
* valgrind.supp: suppression file for bash + bdb errors (commonly not
shipped with the OS)
* atlocal_valgrind: default to suppress via valgrind.supp;
log name not build from parameter passed to the script any more;
updated usage-notes
2020-11-20 Simon Sobisch <simonsobisch@gnu.org>
* general: pass AWK, GREP, SED to the testsuite and use those
* atlocal.in, atlocal_valgrind, atlocal_win:
remove temporary file info.out after use
* listings-sed.sh: replace both 2 and 3-part version numbers
2020-11-12 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind: added prefix
2020-11-11 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind: exec_prefix as exec_prefix
2020-11-04 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win:
fix unsetting of variables which values contain "COB";
allow screenio-tests to be run on cygwin/msys with ncurses
out-of-the box; fixed TEST_LOCAL (may not use pre-inst-env)
and "external" versions with old indexed file msgid
2020-10-26 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win:
now also unsets cobc related environment variables:
use $() instead of backticks in all places
2020-07-19 Edward Hart <edward.dan.hart@gmail.com>
* atlocal.in, atlocal_valgrind, atlocal_win: replaced COB_HAS_CJSON with
COB_HAS_JSON.
2020-05-06 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: allow COBC, COBCRUN, COBCRUN_DIRECT to override
for make localcheck (especially useful in case of installprefix)
* Makefile.am: added some comments and an explicit warning for
installcheck target
2020-05-04 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: pass exec_prefix as it is likely referenced in the LIBS
entries used (thanks to Robert Dubner)
* atlocal.in, atlocal_valgrind, atlocal_win: unified
2020-04-02 Simon Sobisch <simonsobisch@gnu.org>
* run_prog_manual.sh.in, testsuite.src/run_manual_screen.at:
pass program to run to the script instead of hard-wire of "./prog"
2020-03-22 Simon Sobisch <simonsobisch@gnu.org>
* atlocal_win: use intermediate info.out instead of calling
cobc --info multiple times
2020-03-01 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: COB_LIBS during test be based on built-in COB_LIBS, not
on built-in LIBCOB_LIBS
2019-06-30 Simon Sobisch <simonsobisch@gnu.org>
* run_prog_manual.sh.in, Makefile.am: changed the manual test runner
to be a script handled by autoconf instead of make
2019-06-18 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: explicit disable BDB internal locking by unsetting DB_HOME
to work around issues in different environments and to not pollute the
users's general BDB locking files
2019-06-11 Simon Sobisch <simonsobisch@gnu.org>
* Makefile.am (check, checkmanual): now fails if the testsuite reports
any unexpected result (exit with non-zero return)
2019-05-24 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: early unset of COB_ variables (before we set them...)
2019-04-06 Simon Sobisch <simonsobisch@gnu.org>
* Makefile.am, atlocal.in: splitted some make targets and added new
localcheck target, which runs the testsuite using the current
environment (whatever GnuCOBOL version is in PATH)
2019-03-23 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_fundamental.at, testsuite.src/run_misc.at:
adjusted C test sources in the testsuite to include stdio.h
where necessary
2019-03-09 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/*: adjusted C test sources in the testsuite
with missing/wrong external attributes
2019-02-18 Simon Sobisch <simonsobisch@gnu.org>
* Makefile.am: cleanup distribution rules
2019-01-03 Edward Hart <edward.dan.hart@gmail.com>
* testsuite.src/run_xml.at: renamed to run_ml.at
2018-11-11 Simon Sobisch <simonsobisch@gnu.org>
* atlocal_win: dynamically set COB_OBJECT_EXT and COB_EXE_EXT
2018-08-07 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_functions.at: Rename CONTENTS-OF to CONTENT-OF
2018-07-30 Edward Hart <edward.dan.hart@gmail.com>
* testsuite.src/run_file.at, testsuite.src/syn_file.at: merge tests
added by Joe Robbins in 2014 to the fileiorewrite branch.
2018-06-21 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_functions.at: Test CONTENTS-OF and
CONTENT-LENGTH
2018-04-24 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: BUG #515 Fixed test cases.
2018-04-16 Luke Smith <cobcoder@users.sourceforge.net>
* testsuite.src/run_manual_screen.at
- Add keywords and SIZE to special key tests.
2018-04-10 Luke Smith <cobcoder@users.sourceforge.net>
* testsuite.src/run_manual_screen.at
- add key tests: Home, End, Insert, Backspace,
Delete, alt delete, alt left-arrow, alt right-arrow
2018-03-31 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_functions.at, atlocal.in, atlocal_valgrind,
atlocal_win: COB_HAS_UTC_OFFSET removed as no longer needed
2018-03-27 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_manual_screen.at: adjusted keywords,
skip screen tests if support for it is missing (we should adjust
at least the bell test to be run)
* run_prog_manual.sh.in: tweaked template for better portability,
fixed non-working timeout
2018-03-26 Simon Sobisch <simonsobisch@gnu.org>
* run_prog_manual.sh.in: add option to run manual tests in
plain terminal environments using the screen window manager;
added timeout (currently 60 seconds for each test)
2018-03-25 Simon Sobisch <simonsobisch@gnu.org>
* testsuite_manual.at: source for new manual test suite
* testsuite.src/run_manual_screen.at: adjusted version of screen
test suite written by Edward Hart (Patch #26)
* Makefile.am (checkmanual): new target for running manual tests
* Makefile.am, atlocal.in: adjustments for the new manual testsuite
* run_prog_manual.sh.in: template for test runner - we use a template
here as the user may need to tweak this according to his system
* testsuite.src/run_manual_screen.at: allow test cases to be directly
acknowledged by ENTER and mark as failed with any function key;
for failing BEEP tests: mention and check COB_BELL=FLASH
2018-02-16 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.at, testsuite.src/run_reportwriter.at: activated and
tweaked RW run checks
2018-02-16 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: BUG #494 Added test case for embedded
quotes, eg. 'yyy-'hello.
Added test case for the report writer.
2017-11-11 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_fundamental.at: added tests for DEBUG module
2017-11-06 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_extensions.at, testsuite.src/run_fundamental.at:
moved debugging line checks from to run_fundamental.at
* testsuite.src/run_fundamental.at: added first checks for COB_SET_DEBUG
2017-11-05 Simon Sobisch <simonsobisch@gnu.org>
* listings-sed.sh: use `` instead of $() - see Bug #437
2017-11-02 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/configuration.at, testsuite.src/used_binaries.at: added
some checks for increasing code coverage (leading to a minor bugfix)
2017-10-30 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win: adjustments for cygwin
* atlocal_win: re-integrated missing export for COB_MSG_FORMAT
2017-10-26 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win: adjustments for MSYS2
2017-10-22 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win: set COBC and COBCRUN as
autoconf does (including the possible EXEEXT);
export COBC, COBCRUN; unified
2017-09-24 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: set and export variables in separate lines;
use `` instead of $() - see Bug #437
2017-09-10 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win: set COB_RUNTIME_CONFIG
before running `cobcrun --runtime-conf`
2017-08-28 Simon Sobisch <simonsobisch@gnu.org>
* atlocal_valgrind: changed default name for valgrind log files
to show the actual compilation;
changed for easier applying of suppression rules;
don't use valgrind in atlocal itself for "cobcrun --runtime-conf"
2017-08-14 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win: set COBCRUN_DIRECT
used for running executables through tools (especially valgrind)
* testsuite.src: COBCRUN_DIRECT as prefix for running generated executables
2017-08-13 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_valgrind, atlocal_win: export COB_HAS_64_BIT_POINTER
* testsuite.src/data_pointer.at, testsuite.src/listings.at: check
COB_HAS_64_BIT_POINTER instead of indirect test from COBOL
2017-07-25 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_misc.at, testsuite.src/data_binary.at: changed
subsequent compilations in same folder to use a different output name
2017-07-03 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.at, Makefile.am: added testsuite.src/syn_refmod.at
* testsuite.src/run_refmod.at, testsuite.src/syn_refmod.at: moved
compiler tests for reference modification to its own source and
added check for [no-]constant-folding out of bounds
2017-06-16 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Corrected Replacement w/o strings test.
2017-06-16 Simon Sobisch <simonsobisch@gnu.org>
* ChangeLog: moved cobol85 entries to cobol85/ChangeLog
2017-06-15 Simon Sobisch <simonsobisch@gnu.org>
* Makefile.am: added .PHONY to correctly declare logical targets that
always have to be executed and don't result in a file
2017-05-20 Ron Norman <rjn@inglenet.com>
* testsuite.src/run_extensions.at: Test added for -fodoslide
2017-05-13 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_misc.at: set COB_EXIT_WAIT=0 in all testcases
where we do extended screenio
2017-05-10 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: added "Too many errors" message
2017-05-08 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: corrected max error count test
2017-05-03 Simon Sobisch <simonsobisch@gnu.org>
* listings-sed.sh: simplified (more likely to run in non GNU/Linux
environments)
2017-04-25 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_extensions.at: Drop daylight value test, zero means no
rule exists, non-zero means rule exists, testing for bad value is
pointless.
2017-04-11 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_misc.at, testsuite.src/syn_definition.at: moved
and renamed syntax tests for RETURNING to syn_defintion,
added checks for RETURNING item
2017-03-22 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added Error/Warning summary to listings.
2017-03-21 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Changed variable indentation and redefines.
2017-03-19 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added multiple files listing test.
2017-02-21 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Fixed to pass internal cross reference.
2017-02-20 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_file.at: fixed generation with old autoconf
that trips on the string AT_DATA in AT_DATA definitions
2017-01-20 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_misc.at: add PROCEDURE DIVISION EXTERN test
2017-01-10 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.at: minimized the output of testsuite --version while adding
core authors to it
2016-12-06 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.at: added cobcrun to tested programs
* atlocal_win: changes for allowing test of Windows binaries with
WSL / Bash on Windows
* listings-sed.sh: adjustment for optional package suffixes
2016-12-05 Simon Sobisch <simonsobisch@gnu.org>
* atlocal_valgrind: sample configuration for running testsuites
with valgrind
2016-11-19 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_extensions.at: splitted tests for CBL_GC_FORK /
CBL_GC_WAITPID, skip these tests if the functions return "not available"
2016-11-17 Ron Norman <rjn@inglenet.com>
* testsuite.src/run_extensions.at: add CBL_GC_FORK & CBL_GC_WAITPID
2016-11-12 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_win: added COB_IS_RUNNING_IN_TESTMODE
2016-11-11 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: changed for new spacing
2016-11-09 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: added cross reference tests
2016-11-07 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added 88 values to printed symbol listing.
2016-11-06 Simon Sobisch <simonsobisch@gnu.org>
* listings-sed.sh, testsuite.src/listing.at: adjustment for new maximum
of 14 digits in version string
* testsuite.src/listing.at: capture original listing, instead of unified one
2016-11-04 Simon Sobisch <simonsobisch@gnu.org>
* listings-sed.sh: moved from testsuite.src/listings-sed.sh
* listings-sed.sh: adjustment for exotic shells
* atlocal.in, atlocal_win: adjusted listings-sed.sh path in UNIFY_LISTING
* Makefile.am: added listings-sed.sh to EXTRA_DIST
2016-11-01 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Changed preprocessed compile for new line
number processing and added an error preprocessed test case.
2016-10-31 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added header/trailer to file not found
test case.
2016-10-29 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings-sed.sh: Fixed for generic 9 character version.
* testsuite.src/listings.at: Fixed for generic 9 character version.
2016-10-29 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in: pass COB_HAS_UTC_OFFSET, set PATHSEP and COB_HAS_CURSES
for MinGW
* testsuite.src/listings-sed.sh: fix for patchlevel up to 999
* testsuite.src/configuration.at, testsuite.src/used_binaries.at:
used `cobc -q` (instead of sed script) to simplify "unrecognized option"
* testsuite.src/run_misc.at: define NULL if needed
* testsuite.src/run_accept.at: evaluate COB_HAS_CURSES
* testsuite.src/run_functions.at: evaluate COB_HAS_UTC_OFFSET
* testsuite.src/configuration.at: evaluate PATHSEP
2016-10-22 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added --no_symbols test.
2016-10-18 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added some sequence numbers to a couple of
examples. Would have caught the SOURCEFORMAT VARIABLE bug.
2016-10-17 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_win: added UNIFY_LISTING
* testsuite.src/listings.at: moved simplified sed commands used to a single
script listings-sed.sh and use this via UNIFY_LISTING
* testsuite.src/listings.at: split symbols test, added test for -tlines,
use -tlines=0 to remove unforced page breaks
* atlocal_win: added missing COB_HAS_UTC_OFFSET
2016-10-16 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: changed hardcoded listing version to a
template
2016-10-11 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: added Symbols test with OCCURS
2016-09-18 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/syn_file.at: added tests for variable record size,
depending on item and and key fields
2016-09-16 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_win : fix unset of environment variables
that are used in libcob for runtime configuration; bug #319
2016-08-28 Simon Sobisch <simonsobisch@gnu.org>
* Makefile.am: checking `diff` on start of target "check"
2016-08-02 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added tests for non-existent file and
copybook messages in the listing file.
2016-07-24 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Fixed test for 32/64 bit pointers and
additional picture information.
2016-07-18 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added SCREEN and LINKAGE section tests.
2016-07-17 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_misc.at: Added tests for C calling COBOL
with and without setting cob_call_params.
Added tests for ENTRY lookup within main module.
2016-07-17 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_extensions.at: Moved stdout stderr fprintf test
in CBL_OC_HOSTED to external C subprogram.
And then a correction to account for linkage exports.
2016-07-04 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_extensions.at: Removed a "feof" call in
CBL_OC_HOSTED testing to help with Cygwin
2016-06-28 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added Files with FILLER.
2016-06-26 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: Added LISTING ON/OFF test.
2016-06-20 Dave Pitts <dpitts@cozx.com>
* testsuite.src/listings.at: new file, tests for compiler listings
* testsuite.at, Makefile.am: added testsuite.src/listings.at
2016-06-15 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/used_binaries.at: added tests for -j"args"
2016-05-31 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_fundamental.at: Added ADD/SUBTRACT CORRESPONDING test
2016-05-22 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_extensions.at: changed CBL_OC_HOSTED errno test
2016-05-15 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/used_binaries.at: added tests for cobcrun -M <module>
2016-04-23 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/data_binary.at: added test for binary-double unsigned
compare when high bit set.
2016-02-01 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.at, testsuite.src/syn_reportwriter.at: RW checks earlier
skipped are now only comments - will be added back in 3.0 with more
and better checks
2016-01-12 Simon Sobisch <simonsobisch@gnu.org>
* Makefile.am: added targets "test" (running ANSI testsuite) and
"checkall" (running both GnuCOBOL and ANSI testsuite)
2015-12-23 Simon Sobisch <simonsobisch@gnu.org>
* general: remove -std=cobol2002 for compiling (effectively using default),
checked with cobol2014 where checking for standard behaviour,
used -cb_conf when checking single compiler configurations instead
of creating+using a test.conf or loading a completely different -std,
check stdout+stderr where missing, removed the ifdef for __INTEL_COMPILER
as this is included via libcob.h now
* configuration.at: check for all standard configurations -std to
be usable
2015-12-15 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_misc.at: command line option -a replaced with -R
as short form for -debug
2015-12-14 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/data_display.at: add unsigned numeric display tests
2015-11-01 Simon Sobisch <simonsobisch@gnu.org>
* general: skip tests that need a curses build if not available
* general: use new internal shell function _return_path for resolving paths
(necessary for use of paths in testsuite when testing non-cygwin builds
with cygwin)
* atlocal_win: set tests to skip (via COB_HAS_ISAM / COB_HAS_CURSES)
depending on available features (parsing cobc --info)
2015-10-25 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/configuration.at: mayor update including runtime
configuration
2015-08-03 Brian Tiffin <btiffin@gnu.org>
* testsuite.src/run_misc.at: compile from stdin, run after compile
2015-06-08 Luke Smith <cobcoder@users.sourceforge.net>
* testsuite.src/syn_misc.at: FR #37 ACCEPT/DISPLAY field WITH SIZE
2015-05-11 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_functions.at : revised all tests from ACOS to LENGTH
2015-04-27 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_file.at : (new) moved testsuite entries for
file handling to their own test definition (origin: run_misc.at)
2015-03-19 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/syn_functions.at : (new) moved testsuite entries for
FUNCTIONs to their own test definition (origin: syn_misc.at)
2015-03-14 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in, atlocal_win: Added setting of COB_RUNTIME_CONFIG
* moved tests for checking used binaries (cobc, cobcrun, extras) from
testsuite.src/run_misc.at to testsuite.src/used_binaries.at
* moved tests for checking compiler configuration from
testsuite.src/syn_misc.at to testsuite.src/configuration.at, updated
tests and added new ones
2014-12-01 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/syn_screen.at : (new) Added first testsuite entries for
SCREEN section
2014-09-12 Simon Sobisch <simonsobisch@gnu.org>
* support spaces in testsuite
* changed atlocal_win, removing the need for a configured source
(works with build_windows out of the box)
2014-08-07 Simon Sobisch <simonsobisch@gnu.org>
* atlocal.in : unset all environmental vars that are used by libcob
2014-04-30 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/*.at: Added check for cobc's exit code and stderr
where missing
2014-14-04 Philipp Böhme <phi.boehme@googlemail.com>
* testsuite.src/run_extensions.at: Added tests for getopt.
2014-01-14 Simon Sobisch <simonsobisch@gnu.org>
* testsuite.src/run_reportwriter.at, testsuite.src/syn_reportwriter.at:
Added first testsuite entries for REPORT WRITER
2010-06-28 Roger While <simrw@sim-basis.de>
* MARK - Version 2.0
* Move to GPL/LGPL 3
2009-06-09 Roger While <simrw@sim-basis.de>
* New OC tests for edited moves
2009-05-11 Roger While <simrw@sim-basis.de>
* Allow tests to run without ISAM I/O
2009-03-12 Roger While <simrw@sim-basis.de>
* Fix for newest development software
* Use minimum quadrigraphs in autotests for compatibility
2009-01-20 Roger While <simrw@sim-basis.de>
* OC tests for DPC and 78 levels
2008-10-17 Roger While <simrw@sim-basis.de>
* Add test for non-ALLOCATED BASED item
2008-09-30 Roger While <simrw@sim-basis.de>
* Makefile.am : Fix out of source directory builds
2008-08-09 Roger While <simrw@sim-basis.de>
* Change ENTRY test so as not to use obscure/obsoleted options
2008-07-02 Roger While <simrw@sim-basis.de>
* General for all OC tests - Cater for activated END-xxx checking
2008-05-23 Roger While <simrw@sim-basis.de>
* Due to display POINTER changes, ignore output from POINTER datarep test
2008-03-25 Roger While <simrw@sim-basis.de>
* Add OC tests for reference modification of FUNCTIONS
* Add OC test for COB_LOAD_CASE
2008-02-18 Roger While <simrw@sim-basis.de>
* Add OC test for ANY LENGTH
2008-02-14 Roger While <simrw@sim-basis.de>
* atlocal.in : Fix up library search order
2008-01-09 Roger While <simrw@sim-basis.de>
* BY CONTENT not allowed in PROCEDURE header
2007-12-27 Roger While <simrw@sim-basis.de>
** Mark 1.0 RELEASE
2007-12-27 Roger While <simrw@sim-basis.de>
* Add OC test for WHEN-COMPILED
2007-10-27 Roger While <simrw@sim-basis.de>
* OC test for INSPECT with figurative constant
2007-05-11 Roger While <simrw@sim-basis.de>
* Adjust OC test result to agree with tightened input
file presence check
2007-03-05 Roger While <simrw@sim-basis.de>
* OC tests for LOCALE-DATE, LOCALE-TIME
2007-01-29 Roger While <simrw@sim-basis.de>
* OC test for ODO without TO clause
2007-01-16 Roger While <simrw@sim-basis.de>
* OC test for ASSIGN [TO] KEYBOARD/DISPLAY
2006-12-17 Roger While <simrw@sim-basis.de>
* OC test for NUMVAL-C
2006-12-14 Roger While <simrw@sim-basis.de>
* OC tests for TRIM, UPPER-CASE
2006-10-23 Roger While <simrw@sim-basis.de>
* Change C code in the tests to prototype functions
2006-07-23 Roger While <simrw@sim-basis.de>
* run.src, atlocal.in: Remove SWITCH settings from
atlocal and insert directly into the tests
2006-07-19 Roger While <simrw@sim-basis.de>
* syntax.src, run.src : Change tests to accomodate revised
messages
2006-05-18 Roger While <simrw@sim-basis.de>
* OC tests for FUNCTION's EXCEPTION-FILE,
EXCEPTION-LOCATION, EXCEPTION-STATEMENT, EXCEPTION-STATUS
2006-05-08 Roger While <simrw@sim-basis.de>
* OC test for PROCEDURE DIVISION CHAINING
* OC test for INSPECT REPLACING TRAILING
2006-03-22 Roger While <simrw@sim-basis.de>
* OC test for EBCDIC table SORT
2006-03-04 Roger While <simrw@sim-basis.de>
* OC test for 88 level FALSE IS clause and
SET TO FALSE.
2006-01-29 Roger While <simrw@sim-basis.de>
* OC test for COB_PRE_LOAD
2006-01-26 Roger While <simrw@sim-basis.de>
* OC test for UNSTRING DELIMITED LOW-VALUE
2006-01-21 Roger While <simrw@sim-basis.de>
* tests/syntax.src/definition.at : Test mismatched levels
2006-01-05 Roger While <simrw@sim-basis.de>
* General : Bootstrap up to new libtool / automake
atlocal.in : More fixes for HP/IBM/Sun
2005-12-30 Roger While <simrw@sim-basis.de>
* Relax LOG10 test
Fix big endian shell test
atlocal.in : Insert SHLIB_PATH/LIBPATH for AIX/HP-UX
2005-12-28 Roger While <simrw@sim-basis.de>
* run.src/extensions.at : Remove A\$B (MingW)
2005-12-09 Roger While <simrw@sim-basis.de>
* atlocal.in, run.src/*.at: Changes for '-x' option
2005-12-05 Roger While <simrw@sim-basis.de>
* atlocal.in : Include libcob/.libs in PATH, needed for Win32
2005-12-04 Roger While <simrw@sim-basis.de>
* Relax EXP test for MingW
2005-11-25 Roger While <simrw@sim-basis.de>
* New OC test for sticky-linkage
2005-11-07 Roger While <simrw@sim-basis.de>
* New test for PERFORM type OSVS.
* Get the FUNCTION tests in alphabetical order.
2005-11-01 Roger While <simrw@sim-basis.de>
* Relax TAN test.
2005-10-28 Roger While <simrw@sim-basis.de>
* Relax the range check for STANDARD-DEVIATION
Don't do native binary tests when native = big-endian
2005-10-27 Roger While <simrw@sim-basis.de>
* Fixes all over for MAC (Darwin)
We had "-shared" hard-coded in several places.
Pick up the real value from the configure.
2005-10-14 Roger While <simrw@sim-basis.de>
* Fix a typo
2005-10-13 Roger While <simrw@sim-basis.de>
* Fix various tests for GCC 4
2005-07-31 Roger While <simrw@sim-basis.de>
* Tests for SIGN, FRACTION-PART.
* Tweak the tests a bit more to cater for the
abysmal precision of MingW.
2005-07-14 Roger While <simrw@sim-basis.de>
* New test for START of SEQ file.
* Tweak the IF tests a bit. This should cater
for the precison vagueries of doubles.
2005-07-02 Roger While <simrw@sim-basis.de>
* run.src/functions.at : New Intrinsic Function tests
2005-06-13 Roger While <simrw@sim-basis.de>
* atlocal.in : Export COB_SWITCH_1/2 for OC
and Cobol85 tests.
run, run.src/misc.at : Test for SWITCH.
2005-06-11 Roger While <simrw@sim-basis.de>
* Add in INSPECT BEFORE/AFTER tests
2005-05-28 Roger While <simrw@sim-basis.de>
* Use absolute path for cobcrun; seems that some
environments do not propogate the path correctly.
2005-05-15 Roger While <simrw@sim-basis.de>
* Adjust tests for "Warning" and "Error".
2005-05-12 Roger While <simrw@sim-basis.de>
* Adjust tests for larger redefines
(not allowed for cobol2002)
2005-05-03 Roger While <simrw@sim-basis.de>
* Makexx : Due to autoreconf.
* run-O, data-rep-O : Use -O instead of -fruntime-inlining
* run.src,syntax.src : Add tests for duplicate paras and larger
redefines.
Adjust for endianness.
2005-04-15 Keisuke Nishida <knishida@opencobol.org>
* atlocal.in (BIGENDIAN): New variable.
* data-rep.src/binary.at: Don't test native binary on big-endian
machines.
(COMP-5): Moved from run.src/extensions.at.
2005-04-13 Keisuke Nishida <knishida@opencobol.org>
* atlocal.in (CC): Set -fPIC when necessary.
2005-03-03 Roger While <simrw@sim-basis.de>
* run.src/extensions.at :
Fix a dangling file in /tmp
* general: Small cleanups in other files
2005-02-22 Roger While <simrw@sim-basis.de>
* run, run.src/misc.at : Fix REF/CONTENT/VALUE test
2005-02-12 Roger While <simrw@sim-basis.de>
* run.src/misc.at : .. BY CONTENT LENGTH OF ..
run.src/subscripts.at : Clean up a little
run.src/return-code.at : Clean up a little
2005-02-11 Roger While <simrw@sim-basis.de>
* Dummy entry
2005-02-11 Roger While <simrw@sim-basis.de>
* run.src/extensions.at : Fix ARGUMENT check
2005-02-08 Roger While <simrw@sim-basis.de>
* run.src/misc.at, run : Add EXTERNAL as Literal check
2005-02-08 Roger While <simrw@sim-basis.de>
* run.src/misc.at, run : Add cobcrun check
2005-02-04 Roger While <simrw@sim-basis.de>
* run.src/extensions.at : MF extensions
2004-03-06 Keisuke Nishida <knishida@wind.sannet.ne.jp>
* data-rep.src/pointer.at: New file.
2004-03-01 Keisuke Nishida <knishida@wind.sannet.ne.jp>
* Reorganized tests into run.src, syntax.src, and data-rep.src.
2003-11-26 Keisuke Nishida <kxn30@yahoo.co.jp>
* cobol2002-run.src, cobol2002-syntax.src, data-rep.src,
extension.src: New subdirectories.
2003-08-21 Keisuke Nishida <kxn30@yahoo.co.jp>
* display.at, packed.at: New files.
2003-08-10 Keisuke Nishida <knishida@netlab.jp>
* binary.at: New file.
2003-05-30 Keisuke Nishida <knishida@netlab.jp>
* occurs.at: New file.
2003-05-21 Keisuke Nishida <knishida@netlab.jp>
* multiply.at: New file.
* extension.at: New file.
2003-04-29 Keisuke Nishida <knishida@netlab.jp>
* fundamental.at, entry.at: New files.
2003-04-26 Keisuke Nishida <knishida@netlab.jp>
* subscripts.at, ref-mod.at: Divided from reference.at.
* value.at: Renamed from constant.at.
* usage.at: Renamed from packed.at.
* initialize.at: New file.
2003-04-10 Keisuke Nishida <knishida@netlab.jp>
* constant.at, move.at: New files.
2003-04-04 Keisuke Nishida <knishida@netlab.jp>
* packed.at: New file.
2003-03-08 Keisuke Nishida <knishida@netlab.jp>
* testsuite.at: Include all *.at files.
* Makefile.am: Build only a single testsuite script.
2003-02-28 Keisuke Nishida <knishida@netlab.jp>
* reference.at: Combine runtime.at and subref.at.
2003-02-25 Keisuke Nishida <knishida@netlab.jp>
* definition.at, misc.at: New files.
* redef.at: Removed.
2002-12-12 Keisuke Nishida <knishida@netlab.jp>
* redefines.at: New file.
2002-12-10 Keisuke Nishida <knishida@netlab.jp>
* Makefile.am, atlocal.in: New files.
* redef.at, subref.at, runtime.at: New files.
Copyright 2002-2023 Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification, are
permitted provided the copyright notice and this notice are preserved.
|