## -------------------------------------------------- ## ## GnuCOBOL 3.2-early-dev test suite: GnuCOBOL Tests. ## ## -------------------------------------------------- ## testsuite: command line was: $ ./testsuite ## ---------- ## ## ChangeLog. ## ## ---------- ## | | 2019-12-01 Simon Sobisch | | * configure.ac: new options --with-indexed=odbc/oci, supporting | ODBC_CFLAGS ODBC_LIBS OCI_CFLAGS OCI_LIBS | | 2019-10-24 Ron Norman | | * configure.ac: The -with-indexed now check that the handler had | also been include via -with-db|lmdb|cisam|disam|vbisam ## --------- ## ## Platform. ## ## --------- ## hostname = muskat.skogtun.org uname -m = x86_64 uname -r = 5.5.0-rc3_muskat uname -s = Linux uname -v = #7 SMP PREEMPT Wed Dec 25 17:19:28 CET 2019 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = x86_64 /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /home/harald/src/gnucobol/trunk/tests PATH: /home/harald/src/gnucobol/trunk/libcob/.libs PATH: /home/harald/src/gnucobol/trunk/cobc PATH: /home/harald/src/gnucobol/trunk/bin PATH: /home/harald/bin PATH: /opt/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin PATH: /usr/games PATH: /usr/local/games testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2012 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/home/harald/src/gnucobol/trunk/tests' | at_srcdir='.' | abs_srcdir='/home/harald/src/gnucobol/trunk/tests' | at_top_srcdir='..' | abs_top_srcdir='/home/harald/src/gnucobol/trunk' | at_top_build_prefix='../' | abs_top_builddir='/home/harald/src/gnucobol/trunk' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/sh'} testsuite: atlocal: | # | # atlocal gnucobol/tests | # | # Copyright (C) 2003-2012, 2014-2019 Free Software Foundation, Inc. | # Written by Keisuke Nishida, Roger While, Simon Sobisch, Edward Hart | # | # This file is part of GnuCOBOL. | # | # The GnuCOBOL compiler is free software: you can redistribute it | # and/or modify it under the terms of the GNU General Public License | # as published by the Free Software Foundation, either version 3 of the | # License, or (at your option) any later version. | # | # GnuCOBOL is distributed in the hope that it will be useful, | # but WITHOUT ANY WARRANTY; without even the implied warranty of | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # GNU General Public License for more details. | # | # You should have received a copy of the GNU General Public License | # along with GnuCOBOL. If not, see . | | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | ABS_COBC="${abs_top_builddir}/cobc/cobc" | ABS_COBCRUN="${abs_top_builddir}/bin/cobcrun" | # prepend PATH with the actual binaries to let the testsuite find them for | # general check and version output, nomally not needed | PATH="${abs_top_builddir}/libcob/.libs:${abs_top_builddir}/cobc:${abs_top_builddir}/bin:${PATH}" | export PATH | fi | COBC="cobc" | COBCRUN="cobcrun" | COBCRUN_DIRECT="" # used for running created executables through tools | | # be sure to use the English messages | LC_ALL=C | export LC_ALL | | | TEMPLATE="${abs_srcdir}/testsuite.src" | | FLAGS="-debug -Wall ${COBOL_FLAGS}" | COMPILE="${COBC} -x ${FLAGS}" | COMPILE_ONLY="${COBC} -fsyntax-only ${FLAGS}" | COMPILE_MODULE="${COBC} -m ${FLAGS}" | | # Helper script to unify listings (replace version, date, time) | UNIFY_LISTING="${abs_srcdir}/listings-sed.sh" | | # test runner for manual tests, content may be changed by the user | RUN_PROG_MANUAL="${abs_builddir}/run_prog_manual.sh" | | # unset option if not internally set | _unset_option () { | if test "$1" != "COB_CONFIG_DIR" \ | -a "$1" != "COB_RUNTIME_CONFIG"; then | unset $1 | fi | } | | # unset all environment variables that are used in libcob | # for runtime configuration | COB_RUNTIME_CONFIG="${abs_top_srcdir}/config/runtime_empty.cfg" | export COB_RUNTIME_CONFIG | for cobenv in `"${abs_top_builddir}/pre-inst-env" cobcrun --runtime-conf | grep COB_ | cut -d: -f2 | cut -d= -f1`; \ | do _unset_option $cobenv; \ | done | | # different flags checked in the testsuite | COB_UNIX_LF=1 | export COB_UNIX_LF | | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_OBJECT_EXT="o" | COB_EXE_EXT="" | COB_BIGENDIAN="no" | COB_HAS_ISAM="db" | COB_HAS_XML2="yes" | COB_HAS_CJSON="yes" | COB_HAS_CURSES="yes" | COB_HAS_64_BIT_POINTER="yes" | else | COB_OBJECT_EXT="$($COBC --info | grep COB_OBJECT_EXT | cut -d: -f2 | cut -b2-)" | COB_EXE_EXT="$($COBC --info | grep COB_EXE_EXT | cut -d: -f2 | cut -b2-)" | | COB_HAS_64_BIT_POINTER=`$COBCRUN --info | grep "64bit-mode" | cut -d: -f2 | cut -b2-` | if test $($COBC --info | grep -i -c "ISAM.*disabled") = 0; then | COB_HAS_ISAM="yes" | else | COB_HAS_ISAM="no" | fi | if test $($COBC --info | grep -i -c "XML library.*disabled") = 0; then | COB_HAS_XML2="yes" | else | COB_HAS_XML2="no" | fi | if test $($COBC --info | grep -i -c "JSON library.*disabled") = 0; then | COB_HAS_CJSON="yes" | else | COB_HAS_CJSON="no" | fi | fi | if test "x$MSYSTEM" != "x" -o "$OSTYPE" = "cygwin"; then | # running MSYS builds as not-visible child processes result in | # "Redirection is not supported" (old PDcurses) and exit 127 (NCurses) | # --> disabling the tests for this feature | COB_HAS_CURSES="no" | fi | export COB_HAS_ISAM COB_HAS_XML2 COB_HAS_CJSON COB_HAS_CURSES COB_HAS_64_BIT_POINTER | export COBC COBCRUN COBCRUN_DIRECT RUN_PROG_MANUAL | export COB_OBJECT_EXT COB_EXE_EXT | | | # possible path conversion for running the testsuite in an environment | # that doesn't match the one where the tested binaries were built | # Note: not needed for running the testsuite with MSYS as this translates the path | _return_path () { | echo "$1" | } | | # options that are also used in pre-inst-env (always add to both) | # but not directly in the testsuite | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_CFLAGS="-I${abs_top_srcdir} -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -pipe" | COB_LDFLAGS="" | COB_LIBS="-L${abs_top_builddir}/libcob/.libs -lcob -lm -lxml2 -lcjson -lgmp -lncurses -ldb-5.3 -ldl" | COB_CONFIG_DIR="${abs_top_srcdir}/config" | COB_COPY_DIR="${abs_top_srcdir}/copy" | LD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$LD_LIBRARY_PATH" | DYLD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$DYLD_LIBRARY_PATH" | SHLIB_PATH="${abs_top_builddir}/libcob/.libs:$SHLIB_PATH" | LIBPATH="${abs_top_builddir}/libcob/.libs:$LIBPATH" | COB_LIBRARY_PATH="${abs_top_builddir}/extras:$COB_LIBRARY_PATH" | | export COB_CFLAGS COB_LDFLAGS COB_LIBS | export COB_CONFIG_DIR COB_COPY_DIR | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | export COB_LIBRARY_PATH | fi | | # Fix for testcases where cobc translates path to win32 equivalents | if test "x$MSYSTEM" != "x"; then | PATHSEP=";" | else | PATHSEP=':'; | fi | export PATHSEP | | # to ensure that no external DB_HOME is polluted: unset | DB_HOME="" && export DB_HOME | | # For the very rare cases where cobc/libcob may need to know if they're running in test mode: | COB_IS_RUNNING_IN_TESTMODE=1 && export COB_IS_RUNNING_IN_TESTMODE ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:26: /home/harald/src/gnucobol/trunk/cobc/cobc --version cobc (GnuCOBOL) 3.2-early-dev.0 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Keisuke Nishida, Roger While, Ron Norman, Simon Sobisch, Edward Hart Built Dec 29 2019 13:27:05 Packaged Dec 05 2019 15:14:56 UTC C version "9.2.0" ./testsuite.at:26: /home/harald/src/gnucobol/trunk/bin/cobcrun --version cobcrun (GnuCOBOL) 3.2-early-dev.0 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Roger While, Simon Sobisch, Brian Tiffin Built Dec 29 2019 13:27:02 Packaged Dec 05 2019 15:14:56 UTC libcob (GnuCOBOL) 3.2-early-dev.0 Copyright (C) 2019 Free Software Foundation, Inc. License LGPLv3+: GNU LGPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Keisuke Nishida, Roger While, Ron Norman, Simon Sobisch, Edward Hart Built Dec 29 2019 13:25:29 Packaged Dec 05 2019 15:14:56 UTC ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Sun Dec 29 13:28:47 CET 2019 1. Compiler help and information (used_binaries.at:27): ok (0m0.460000s 0m0.160000s) 2. Compiler outputs (general) (used_binaries.at:46): ok (0m1.720000s 0m0.350000s) 3. Compiler outputs (file specified) (used_binaries.at:86): ok (0m1.630000s 0m0.410000s) 4. Compiler outputs (path specified) (used_binaries.at:114): ok (0m1.700000s 0m0.350000s) 5. Compiler outputs (assembler) (used_binaries.at:143): ok (0m1.030000s 0m0.210000s) 6. Source file not found (used_binaries.at:178): ok (0m0.020000s 0m0.010000s) 7. Temporary path invalid (used_binaries.at:188): ok (0m1.240000s 0m0.150000s) 8. Using full path for cobc (used_binaries.at:223): ok (0m0.590000s 0m0.110000s) 9. C Compiler optimizations (used_binaries.at:241): ok (0m4.310000s 0m0.700000s) 10. Invalid cobc option (used_binaries.at:278): ok (0m0.060000s 0m0.050000s) 11. cobcrun help and information (used_binaries.at:302): ok (0m0.060000s 0m0.040000s) 12. cobcrun validation (used_binaries.at:312): ok (0m0.750000s 0m0.120000s) 13. cobcrun -M DSO entry argument (used_binaries.at:352): ok (0m0.760000s 0m0.150000s) 14. cobcrun -M directory/ default (used_binaries.at:412): ok (0m0.680000s 0m0.200000s) 15. cobcrun -M directory/dso alternate (used_binaries.at:451): ok (0m0.720000s 0m0.180000s) 16. cobcrun -M DSO entry multiple arguments (used_binaries.at:502): ok (0m0.520000s 0m0.140000s) 17. cobcrun error messages (used_binaries.at:547): ok (0m0.080000s 0m0.060000s) 18. Compile from stdin (used_binaries.at:570): ok (0m0.960000s 0m0.190000s) 19. Run job after compilation (used_binaries.at:591): ok (0m1.010000s 0m0.150000s) 20. Run job after compilation (path specified) (used_binaries.at:610): ok (0m1.000000s 0m0.160000s) 21. Run job with optional arguments (used_binaries.at:630): ok (0m1.610000s 0m0.270000s) 22. cobc with standard configuration file (configuration.at:22): ok (0m0.070000s 0m0.010000s) 23. cobc dialect features for all -std (configuration.at:43): ok (0m1.260000s 0m0.330000s) 24. cobc with configuration file via -std (configuration.at:101): ok (0m0.030000s 0m0.020000s) 25. cobc with standard configuration file via -conf (configuration.at:122): ok (0m0.030000s 0m0.010000s) 26. cobc with own configuration file via -conf (configuration.at:143): ok (0m0.130000s 0m0.040000s) 27. cobc configuration: recursive include (configuration.at:172): ok (0m0.020000s 0m0.010000s) 28. cobc with -std and -conf (configuration.at:210): ok (0m0.120000s 0m0.020000s) 29. cobc compiler flag on command line (configuration.at:237): ok (0m0.060000s 0m0.010000s) 30. cobc compiler flag on command line (priority) (configuration.at:256): ok (0m0.210000s 0m0.040000s) 31. cobc configuration: entries (configuration.at:289): ok (0m0.180000s 0m0.080000s) 32. cobc configuration: conf missing (configuration.at:336): ok (0m0.080000s 0m0.030000s) 33. cobc configuration: conf optional (configuration.at:364): ok (0m0.140000s 0m0.030000s) 34. cobc configuration: incomplete (configuration.at:400): ok (0m0.010000s 0m0.020000s) 35. runtime configuration (configuration.at:518): ok (0m0.070000s 0m0.040000s) 36. runtime configuration file (configuration.at:537): ok (0m0.190000s 0m0.110000s) 37. runtime configuration: recursive include (configuration.at:580): ok (0m0.010000s 0m0.020000s) 38. runtime configuration: environment priority (configuration.at:609): ok (0m0.020000s 0m0.020000s) 39. runtime configuration: entries (configuration.at:622): ok (0m0.020000s 0m0.010000s) 40. runtime configuration: conf missing (configuration.at:703): ok (0m0.060000s 0m0.040000s) 41. runtime configuration: conf optional (configuration.at:732): ok (0m0.010000s 0m0.010000s) 42. runtime configuration: strings and environment (configuration.at:745): ok (0m0.050000s 0m0.020000s) 43. validation of COB_CONFIG_DIR (configuration.at:757): ok (0m0.020000s 0m0.010000s) 44. COPY: within comment (syn_copy.at:21): ok (0m0.130000s 0m0.040000s) 45. COPY: file not found (syn_copy.at:50): ok (0m0.270000s 0m0.070000s) 46. COPY: recursive (syn_copy.at:106): ok (0m0.070000s 0m0.010000s) 47. COPY: replacement order (syn_copy.at:146): ok (0m0.600000s 0m0.100000s) 48. COPY: separators (syn_copy.at:173): ok (0m0.620000s 0m0.080000s) 49. COPY: partial replacement (syn_copy.at:202): ok (0m0.610000s 0m0.090000s) 50. COPY: LEADING replacement (syn_copy.at:232): ok (0m0.580000s 0m0.110000s) 51. COPY: TRAILING replacement (syn_copy.at:262): ok (0m0.620000s 0m0.080000s) 52. COPY: recursive replacement (syn_copy.at:292): ok (0m0.620000s 0m0.080000s) 53. COPY: fixed/free format (syn_copy.at:322): ok (0m0.620000s 0m0.080000s) 54. Invalid source name (syn_definition.at:25): ok (0m0.020000s 0m0.000000s) 55. Invalid PROGRAM-ID (syn_definition.at:37): ok (0m0.070000s 0m0.010000s) 56. Invalid PROGRAM-ID type clause (1) (syn_definition.at:54): ok (0m0.060000s 0m0.020000s) 57. invalid PROGRAM-ID type clause (2) (syn_definition.at:71): ok (0m0.060000s 0m0.020000s) 58. INITIAL / RECURSIVE before COMMON (syn_definition.at:88): ok (0m0.060000s 0m0.010000s) 59. Undefined data name (syn_definition.at:120): ok (0m0.070000s 0m0.010000s) 60. Undefined group name (syn_definition.at:139): ok (0m0.070000s 0m0.010000s) 61. Undefined data name in group (syn_definition.at:161): ok (0m0.060000s 0m0.020000s) 62. Reference not a group name (syn_definition.at:185): ok (0m0.060000s 0m0.020000s) 63. Incomplete 01 definition (syn_definition.at:207): ok (0m0.070000s 0m0.010000s) 64. error handling in conditions (syn_definition.at:225): ok (0m0.060000s 0m0.020000s) 65. Same labels in different sections (syn_definition.at:299): ok (0m0.060000s 0m0.020000s) 66. Redefinition of 01 items (syn_definition.at:324): ok (0m0.120000s 0m0.040000s) 67. Redefinition of 01 and 02 items (syn_definition.at:346): ok (0m0.070000s 0m0.010000s) 68. Redefinition of 02 items (syn_definition.at:366): ok (0m0.070000s 0m0.010000s) 69. Redefinition of 77 items (syn_definition.at:387): ok (0m0.070000s 0m0.010000s) 70. Redefinition of 01 and 77 items (syn_definition.at:407): ok (0m0.060000s 0m0.010000s) 71. Redefinition of 88 items (syn_definition.at:427): ok (0m0.070000s 0m0.010000s) 72. Redefinition of program-name by other programs (syn_definition.at:448): ok (0m0.130000s 0m0.030000s) 73. Redefinition of program-name within program (syn_definition.at:528): ok (0m0.140000s 0m0.030000s) 74. Redefinition of function-prototype name (syn_definition.at:558): ok (0m0.060000s 0m0.020000s) 75. PROCEDURE DIVISION RETURNING OMITTED: main (syn_definition.at:583): ok (0m0.440000s 0m0.060000s) 76. PROCEDURE DIVISION RETURNING OMITTED: FUNCTION (syn_definition.at:603): ok (0m0.060000s 0m0.010000s) 77. PROCEDURE DIVISION RETURNING item (syn_definition.at:622): ok (0m0.350000s 0m0.080000s) 78. Data item with same name as program-name (syn_definition.at:717): ok (0m0.060000s 0m0.010000s) 79. Ambiguous reference to 02 items (syn_definition.at:744): ok (0m0.060000s 0m0.020000s) 80. Ambiguous reference to 02 and 03 items (syn_definition.at:771): ok (0m0.070000s 0m0.010000s) 81. Ambiguous reference with qualification (syn_definition.at:797): ok (0m0.070000s 0m0.010000s) 82. Unique reference with ambiguous qualifiers (syn_definition.at:826): ok (0m0.050000s 0m0.020000s) 83. SYNCHRONIZED clause (syn_definition.at:851): ok (0m0.070000s 0m0.010000s) 84. Undefined procedure name (syn_definition.at:893): ok (0m0.080000s 0m0.000000s) 85. Redefinition of section names (syn_definition.at:913): ok (0m0.070000s 0m0.010000s) 86. Redefinition of section and paragraph names (syn_definition.at:938): ok (0m0.070000s 0m0.010000s) 88. Redefinition of paragraph names (syn_definition.at:1001): ok (0m0.070000s 0m0.010000s) 89. Ambiguous reference to paragraph name (syn_definition.at:1027): ok (0m0.060000s 0m0.020000s) 90. Non-matching level numbers (extension) (syn_definition.at:1053): ok (0m0.060000s 0m0.020000s) 91. CALL BY VALUE alphanumeric item (extension) (syn_definition.at:1077): ok (0m0.070000s 0m0.010000s) 92. CALL BY VALUE national item (extension) (syn_definition.at:1099): ok (0m0.070000s 0m0.010000s) 93. CALL BY VALUE figurative constants (syn_definition.at:1122): ok (0m0.060000s 0m0.010000s) 94. Duplicate identification division header (syn_definition.at:1156): ok (0m0.070000s 0m0.010000s) 95. RETURNING in STOP RUN / GOBACK / EXIT PROGRAM (syn_definition.at:1171): ok (0m1.090000s 0m0.190000s) 96. Invalid ENVIRONMENT DIVISION order (syn_definition.at:1222): ok (0m0.070000s 0m0.010000s) 97. Function without END FUNCTION (syn_definition.at:1247): ok (0m0.060000s 0m0.010000s) 98. Nested programs without END PROGRAM (syn_definition.at:1261): ok (0m0.060000s 0m0.010000s) 99. Nested programs not in procedure division (syn_definition.at:1283): ok (0m0.070000s 0m0.010000s) 100. Screen section starts with 78-level (syn_definition.at:1302): ok (0m0.060000s 0m0.020000s) 101. Invalid PICTURE strings (syn_definition.at:1318): ok (0m0.100000s 0m0.040000s) 102. PICTURE strings invalid with BLANK WHEN ZERO (syn_definition.at:1578): ok (0m0.070000s 0m0.010000s) 103. PICTURE strings invalid with USAGE (syn_definition.at:1601): ok (0m0.070000s 0m0.010000s) 104. ALPHABET definition (syn_definition.at:1621): ok (0m0.070000s 0m0.010000s) 105. PROGRAM COLLATING SEQUENCE (syn_definition.at:1644): ok (0m0.210000s 0m0.050000s) 106. RENAMES item (syn_definition.at:1827): ok (0m0.030000s 0m0.010000s) 107. RENAMES of 01-, 66- and 77-level items (syn_definition.at:1894): ok (0m0.110000s 0m0.020000s) 108. APPLY COMMIT clause (syn_definition.at:1920): ok (0m0.070000s 0m0.010000s) 109. Non-numeric subscript (syn_subscripts.at:23): ok (0m0.060000s 0m0.020000s) 110. Subscript range check (syn_subscripts.at:50): ok (0m0.060000s 0m0.020000s) 111. Subscript bounds with OCCURS DEPENDING ON (syn_subscripts.at:91): ok (0m0.060000s 0m0.020000s) 112. Subscripted item requires OCCURS clause (syn_subscripts.at:118): ok (0m0.060000s 0m0.020000s) 113. Number of subscripts (syn_subscripts.at:144): ok (0m0.130000s 0m0.030000s) 114. OCCURS with level 01 and 77 (syn_occurs.at:29): ok (0m0.170000s 0m0.050000s) 115. OCCURS with level 66 (syn_occurs.at:84): ok (0m0.070000s 0m0.010000s) 116. OCCURS with level 78 (syn_occurs.at:103): ok (0m0.070000s 0m0.010000s) 117. OCCURS with level 88 (syn_occurs.at:121): ok (0m0.060000s 0m0.020000s) 118. OCCURS with variable-occurrence data item (syn_occurs.at:141): ok (0m0.270000s 0m0.070000s) 119. OCCURS data-items for INDEXED and KEY (syn_occurs.at:189): ok (0m0.080000s 0m0.000000s) 120. Nested OCCURS clause (syn_occurs.at:229): ok (0m0.070000s 0m0.010000s) 121. OCCURS DEPENDING with wrong size (syn_occurs.at:266): ok (0m0.070000s 0m0.010000s) 122. OCCURS DEPENDING followed by another field (syn_occurs.at:305): ok (0m0.130000s 0m0.040000s) 123. OCCURS with unmatched DEPENDING / TO phrases (syn_occurs.at:347): ok (0m0.160000s 0m0.060000s) 124. OCCURS INDEXED before KEY (syn_occurs.at:390): ok (0m0.150000s 0m0.020000s) 125. OCCURS size check (syn_occurs.at:428): ok (0m0.140000s 0m0.030000s) 126. ODO not Fixed Loc (syn_occurs.at:454): ok (0m0.240000s 0m0.030000s) 127. REDEFINES: not following entry-name (syn_redefines.at:28): ok (0m0.140000s 0m0.030000s) 128. REDEFINES: level 02 by 01 (syn_redefines.at:53): ok (0m0.060000s 0m0.020000s) 129. REDEFINES: level 03 by 02 (syn_redefines.at:74): ok (0m0.070000s 0m0.010000s) 130. REDEFINES: level 66 (syn_redefines.at:96): ok (0m0.070000s 0m0.010000s) 131. REDEFINES: level 88 (syn_redefines.at:118): ok (0m0.070000s 0m0.010000s) 132. REDEFINES: lower level number (syn_redefines.at:147): ok (0m0.070000s 0m0.010000s) 133. REDEFINES: with OCCURS (syn_redefines.at:173): ok (0m0.060000s 0m0.020000s) 134. REDEFINES: with subscript (syn_redefines.at:194): ok (0m0.070000s 0m0.010000s) 135. REDEFINES: with variable occurrence (syn_redefines.at:216): ok (0m0.070000s 0m0.010000s) 136. REDEFINES: with qualification (syn_redefines.at:251): ok (0m0.060000s 0m0.020000s) 137. REDEFINES: multiple redefinition (syn_redefines.at:277): ok (0m0.170000s 0m0.030000s) 138. REDEFINES: size exceeds (syn_redefines.at:305): ok (0m0.060000s 0m0.020000s) 139. REDEFINES: with VALUE (syn_redefines.at:338): ok (0m0.660000s 0m0.110000s) 140. REDEFINES: with intervention (syn_redefines.at:370): ok (0m0.060000s 0m0.020000s) 141. REDEFINES: within REDEFINES (syn_redefines.at:399): ok (0m0.070000s 0m0.010000s) 142. REDEFINES: non-referenced ambiguous item (syn_redefines.at:419): ok (0m0.070000s 0m0.010000s) 143. Numeric item (integer) (syn_value.at:43): ok (0m0.070000s 0m0.010000s) 144. Numeric item (non-integer) (syn_value.at:70): ok (0m0.070000s 0m0.010000s) 145. Numeric item with picture P (syn_value.at:94): ok (0m0.070000s 0m0.010000s) 146. Signed numeric literal (syn_value.at:126): ok (0m0.060000s 0m0.020000s) 147. Alphabetic item (syn_value.at:152): ok (0m0.080000s 0m0.000000s) 148. Alphanumeric item (syn_value.at:179): ok (0m0.070000s 0m0.010000s) 149. Alphanumeric group item (syn_value.at:204): ok (0m0.070000s 0m0.010000s) 150. Numeric-edited item (syn_value.at:239): ok (0m0.200000s 0m0.060000s) 151. Alphanumeric-edited item (syn_value.at:272): ok (0m0.070000s 0m0.010000s) 152. Implicit picture from value (syn_value.at:340): ok (0m0.130000s 0m0.030000s) 153. Missing SELECT (syn_file.at:22): ok (0m0.070000s 0m0.010000s) 154. Duplicated SELECT (syn_file.at:49): ok (0m0.060000s 0m0.020000s) 155. Missing FD (syn_file.at:80): ok (0m0.060000s 0m0.020000s) 156. Duplicated FD (syn_file.at:106): ok (0m0.060000s 0m0.020000s) 157. ASSIGN to device-name (syn_file.at:135): ok (0m0.390000s 0m0.050000s) 158. ASSIGN to printer-name (syn_file.at:202): ok (0m0.400000s 0m0.050000s) 159. ASSIGN to lsq-device-name (syn_file.at:269): ok (0m0.120000s 0m0.020000s) 160. SELECT without ASSIGN (syn_file.at:324): ok (0m0.070000s 0m0.010000s) 161. START on SEQUENTIAL file (syn_file.at:352): ok (0m0.070000s 0m0.010000s) 162. OPEN SEQUENTIAL file REVERSED (syn_file.at:389): ok (0m0.150000s 0m0.020000s) 163. OPEN SEQUENTIAL file NO REWIND (syn_file.at:437): ok (0m0.060000s 0m0.010000s) 164. valid key items (syn_file.at:476): ok (0m0.060000s 0m0.020000s) 165. INDEXED file invalid key items (syn_file.at:526): ok (0m0.070000s 0m0.010000s) 166. variable record length (syn_file.at:590): ok (0m0.330000s 0m0.070000s) 167. variable record length DEPENDING item (syn_file.at:701): ok (0m0.130000s 0m0.040000s) 168. DECLARATIVES invalid procedure reference (1) (syn_file.at:775): ok (0m0.280000s 0m0.080000s) 169. DECLARATIVES invalid procedure reference (2) (syn_file.at:864): ok (0m0.070000s 0m0.010000s) 170. EXTERNAL file (syn_file.at:905): ok (0m0.060000s 0m0.010000s) 171. RECORDING MODE (syn_file.at:933): ok (0m0.070000s 0m0.010000s) 172. CODE-SET clause (syn_file.at:962): ok (0m0.070000s 0m0.010000s) 173. CODE-SET FOR clause (syn_file.at:998): ok (0m0.060000s 0m0.020000s) 174. WRITE / REWRITE FROM clause and FILE (syn_file.at:1032): ok (0m0.070000s 0m0.020000s) 175. Clauses following invalid ACCESS clause (syn_file.at:1093): ok (0m0.070000s 0m0.010000s) 176. RELATIVE KEY type checks (syn_file.at:1118): ok (0m0.070000s 0m0.010000s) 177. Mismatched KEY clause (syn_file.at:1178): ok (0m0.070000s 0m0.010000s) 178. RECORD DELIMITER (syn_file.at:1205): ok (0m0.070000s 0m0.010000s) 179. FILE STATUS (syn_file.at:1317): ok (0m0.170000s 0m0.050000s) 180. INDEXED file PASSWORD clause (syn_file.at:1367): ok (0m0.060000s 0m0.020000s) 181. RECORD clause equal limits (syn_file.at:1418): ok (0m0.070000s 0m0.010000s) 182. FILE ... FROM literal (syn_file.at:1458): ok (0m0.180000s 0m0.060000s) 183. WRITE / REWRITE on LINE SEQUENTIAL files (syn_file.at:1517): ok (0m0.060000s 0m0.010000s) 184. WRITE / REWRITE on REPORT files (syn_file.at:1552): ok (0m0.080000s 0m0.000000s) 185. SELECT without fd-name (syn_file.at:1589): ok (0m0.070000s 0m0.010000s) 186. Undeclared FILE-ID variable (syn_file.at:1608): ok (0m0.070000s 0m0.010000s) 187. Undeclared FILE STATUS variable (syn_file.at:1633): ok (0m0.060000s 0m0.020000s) 190. OPEN I-O with LINE SEQUENTIAL (syn_file.at:1726): ok (0m0.060000s 0m0.020000s) 191. ACCESS RANDOM with ORG SEQUENTIAL (syn_file.at:1751): ok (0m0.070000s 0m0.010000s) 192. ALTERNATE RECORD KEY SUPPRESS WHEN (syn_file.at:1778): ok (0m0.120000s 0m0.010000s) 193. RECORD definition with SOURCE IS / = (syn_file.at:1823): ok (0m0.070000s 0m0.000000s) 196. SELECT/OPEN syntax extensions (syn_file.at:1938): ok (0m0.130000s 0m0.030000s) 197. GLOBAL FD nested progam (syn_file.at:2033): ok (0m0.590000s 0m0.090000s) 198. REPORT error/warning (syn_reportwriter.at:23): ok (0m0.070000s 0m0.010000s) 199. REPORT not positive integers in COL / LINE PLUS (syn_reportwriter.at:125): ok (0m0.120000s 0m0.010000s) 200. Missing DETAIL line (syn_reportwriter.at:178): ok (0m0.070000s 0m0.010000s) 201. REPORT LINE PLUS ZERO (syn_reportwriter.at:221): ok (0m0.060000s 0m0.020000s) 202. Incorrect REPORT NAME (syn_reportwriter.at:271): ok (0m0.080000s 0m0.040000s) 203. REPORT with PLUS RIGHT/CENTER (syn_reportwriter.at:388): ok (0m0.070000s 0m0.010000s) 204. PAGE LIMITS clause (syn_reportwriter.at:481): ok (0m0.070000s 0m0.010000s) 205. Report FD without period (syn_reportwriter.at:516): ok (0m0.070000s 0m0.010000s) 206. REPORT with unreferenced control field (syn_reportwriter.at:549): ok (0m0.600000s 0m0.090000s) 207. Incorrect USAGE clause (syn_reportwriter.at:577): ok (0m0.070000s 0m0.010000s) 208. valid reference modification (syn_refmod.at:25): ok (0m0.610000s 0m0.080000s) 209. Static out of bounds (syn_refmod.at:51): ok (0m0.040000s 0m0.010000s) 210. constant-folding out of bounds (syn_refmod.at:95): ok (0m0.140000s 0m0.020000s) 211. Reference Bounds check (syn_refmod.at:133): ok (0m0.040000s 0m0.010000s) 212. ambiguous AND/OR (syn_misc.at:23): ok (0m0.070000s 0m0.010000s) 213. warn constant expressions (syn_misc.at:54): ok (0m0.060000s 0m0.020000s) 214. warn literal size (syn_misc.at:87): ok (0m0.080000s 0m0.010000s) 215. warn literal size in constant expr. (level 88) (syn_misc.at:352): ok (0m0.060000s 0m0.020000s) 216. Invalid conditional expression (1) (syn_misc.at:402): ok (0m0.060000s 0m0.020000s) 217. Invalid conditional expression (2) (syn_misc.at:515): ok (0m0.070000s 0m0.010000s) 218. Invalid conditional expression (3) (syn_misc.at:571): ok (0m0.070000s 0m0.010000s) 219. Valid conditional expression (syn_misc.at:635): ok (0m0.130000s 0m0.030000s) 220. missing headers (syn_misc.at:668): ok (0m0.130000s 0m0.040000s) 221. one line program (syn_misc.at:718): ok (0m0.140000s 0m0.030000s) 222. empty program (syn_misc.at:737): ok (0m2.770000s 0m0.470000s) 223. INITIALIZE constant (syn_misc.at:783): ok (0m0.070000s 0m0.010000s) 224. CLASS duplicate values (syn_misc.at:810): ok (0m0.060000s 0m0.020000s) 225. INSPECT invalid size (syn_misc.at:843): ok (0m0.070000s 0m0.010000s) 226. INSPECT invalid target (syn_misc.at:884): ok (0m0.070000s 0m0.010000s) 227. INSPECT missing keyword (syn_misc.at:907): ok (0m0.060000s 0m0.020000s) 228. INSPECT repeated keywords (syn_misc.at:928): ok (0m0.070000s 0m0.010000s) 229. INSPECT incomplete clause (syn_misc.at:960): ok (0m0.070000s 0m0.010000s) 230. INSPECT multiple BEFORE/AFTER clauses (syn_misc.at:982): ok (0m0.060000s 0m0.020000s) 231. maximum data size (syn_misc.at:1005): ok (0m0.060000s 0m0.020000s) 232. unreachable statement (syn_misc.at:1034): ok (0m0.070000s 0m0.020000s) 233. CRT STATUS (syn_misc.at:1084): ok (0m0.130000s 0m0.030000s) 234. CURRENCY SIGN (syn_misc.at:1126): ok (0m0.490000s 0m0.130000s) 235. SWITCHES (syn_misc.at:1238): ok (0m0.120000s 0m0.040000s) 236. unexpected mnemonic-name location (syn_misc.at:1365): ok (0m0.070000s 0m0.010000s) 237. wrong device for mnemonic-name (syn_misc.at:1392): ok (0m0.060000s 0m0.020000s) 238. missing mnemonic-name declaration (syn_misc.at:1417): ok (0m0.070000s 0m0.010000s) 239. unknown device in dialect (syn_misc.at:1438): ok (0m0.140000s 0m0.030000s) 240. ACCEPT WITH ( NO ) UPDATE / DEFAULT (syn_misc.at:1468): ok (0m0.060000s 0m0.010000s) 241. ACCEPT WITH AUTO / TAB (syn_misc.at:1493): ok (0m0.060000s 0m0.010000s) 242. ACCEPT WITH LOWER / UPPER (syn_misc.at:1518): ok (0m0.060000s 0m0.020000s) 243. ACCEPT WITH SIZE (syn_misc.at:1540): ok (0m0.060000s 0m0.020000s) 244. DISPLAY WITH SIZE (syn_misc.at:1569): ok (0m0.060000s 0m0.020000s) 245. source text after program-text area (syn_misc.at:1594): ok (0m0.070000s 0m0.010000s) 246. line overflow in Fixed-form / Free-form (syn_misc.at:1615): ok (0m0.210000s 0m0.050000s) 247. continuation Indicator - too many lines (syn_misc.at:1663): ok (0m0.510000s 0m0.020000s) 248. continuation of COBOL words (syn_misc.at:2220): ok (0m0.090000s 0m0.040000s) 249. literal too long (syn_misc.at:2241): ok (0m0.390000s 0m0.080000s) 250. line and floating comments (syn_misc.at:2476): ok (0m2.830000s 0m0.520000s) 251. word length (syn_misc.at:2641): ok (0m0.480000s 0m0.130000s) 252. Segmentation Module (syn_misc.at:2804): ok (0m0.090000s 0m0.030000s) 253. ACCEPT FROM ESCAPE KEY (syn_misc.at:2896): ok (0m0.070000s 0m0.010000s) 254. Numeric literals (syn_misc.at:2921): ok (0m0.210000s 0m0.050000s) 255. floating-point literals (syn_misc.at:3100): ok (0m0.140000s 0m0.030000s) 256. X literals (syn_misc.at:3207): ok (0m0.070000s 0m0.010000s) 257. national literals (syn_misc.at:3234): ok (0m0.090000s 0m0.030000s) 258. NX literals (syn_misc.at:3272): ok (0m0.100000s 0m0.030000s) 259. binary literals (syn_misc.at:3310): ok (0m0.160000s 0m0.020000s) 260. binary-hexadecimal literals (syn_misc.at:3346): ok (0m0.100000s 0m0.020000s) 261. HP COBOL octal literals (syn_misc.at:3375): ok (0m0.100000s 0m0.040000s) 262. ACUCOBOL literals (syn_misc.at:3411): ok (0m0.160000s 0m0.040000s) 263. ACUCOBOL 32bit literal size (syn_misc.at:3473): skipped (syn_misc.at:3475) 264. ACUCOBOL USAGE FLOAT / DOUBLE (syn_misc.at:3504): ok (0m0.170000s 0m0.050000s) 265. ACUCOBOL USAGE HANDLE (syn_misc.at:3533): ok (0m0.090000s 0m0.030000s) 266. ACUCOBOL WINDOW statements (syn_misc.at:3642): ok (0m0.130000s 0m0.030000s) 267. ACUCOBOL GRAPHICAL controls (syn_misc.at:3727): ok (0m0.070000s 0m0.000000s) 268. DISPLAY MESSAGE BOX (syn_misc.at:3806): ok (0m0.060000s 0m0.010000s) 269. DISPLAY OMITTED (syn_misc.at:3849): ok (0m0.060000s 0m0.020000s) 270. CGI: EXTERNAL-FORM (syn_misc.at:3870): ok (0m0.060000s 0m0.020000s) 271. adding/removing reserved words (syn_misc.at:3925): ok (0m0.140000s 0m0.030000s) 272. adding aliases (syn_misc.at:3955): ok (0m0.270000s 0m0.060000s) 273. overriding default words (syn_misc.at:3989): ok (0m0.120000s 0m0.050000s) 274. complete specified word list (syn_misc.at:4019): ok (0m0.180000s 0m0.040000s) 275. ANY LENGTH item as BY VALUE formal parameter (syn_misc.at:4039): skipped (syn_misc.at:4041) 276. swapped SOURCE- and OBJECT-COMPUTER (syn_misc.at:4062): ok (0m0.210000s 0m0.020000s) 277. CONF. SECTION paragraphs in wrong order (syn_misc.at:4084): ok (0m0.260000s 0m0.030000s) 278. NOT ON EXCEPTION with STATIC CALL convention (syn_misc.at:4156): ok (0m0.270000s 0m0.070000s) 279. NOT ON EXCEPTION phrases before ON EXCEPTION (syn_misc.at:4204): ok (0m0.100000s 0m0.030000s) 280. wrong dialect hints (syn_misc.at:4268): ok (0m0.020000s 0m0.010000s) 281. redundant periods (syn_misc.at:4292): ok (0m0.060000s 0m0.020000s) 282. IF-ELSE statement list with invalid syntax (syn_misc.at:4322): ok (0m0.070000s 0m0.010000s) 283. EVALUATE statement with invalid syntax (syn_misc.at:4355): ok (0m0.070000s 0m0.010000s) 284. MF reserved word directives (syn_misc.at:4405): ok (0m0.070000s 0m0.010000s) 285. STRING / UNSTRING with invalid syntax (syn_misc.at:4461): ok (0m0.070000s 0m0.010000s) 286. use of program-prototypes (syn_misc.at:4526): ok (0m0.060000s 0m0.020000s) 287. invalid INSPECT/TRANSFORM operands (syn_misc.at:4553): ok (0m0.060000s 0m0.020000s) 288. SIGN clause checks (syn_misc.at:4597): ok (0m0.080000s 0m0.000000s) 289. conflicting entry conventions (syn_misc.at:4622): ok (0m0.200000s 0m0.050000s) 290. conflicting call conventions (syn_misc.at:4691): ok (0m0.090000s 0m0.040000s) 291. dangling LINKAGE items (syn_misc.at:4720): ok (0m0.070000s 0m0.010000s) 292. ADD / SUBTRACT TABLE (syn_misc.at:4776): ok (0m0.070000s 0m0.010000s) 293. USE FOR DEBUGGING invalid ref-mod / subscripts (syn_misc.at:4819): ok (0m0.070000s 0m0.010000s) 294. USE FOR DEBUGGING duplicate targets (syn_misc.at:4864): ok (0m0.070000s 0m0.010000s) 296. Empty PERFORM with DEBUGGING MODE (syn_misc.at:4985): ok (0m0.070000s 0m0.010000s) 297. whitespace handling (syn_misc.at:5013): ok (0m0.130000s 0m0.030000s) 298. STOP identifier (syn_misc.at:5101): ok (0m0.140000s 0m0.020000s) 299. 01 CONSTANT (syn_misc.at:5127): ok (0m0.280000s 0m0.070000s) 300. 78 VALUE (syn_misc.at:5175): ok (0m0.210000s 0m0.050000s) 301. level 78 NEXT / START OF (syn_misc.at:5217): ok (0m0.070000s 0m0.010000s) 302. SYMBOLIC CONSTANT (syn_misc.at:5276): ok (0m0.170000s 0m0.030000s) 303. Constant Expressions (1) (syn_misc.at:5325): ok (0m0.070000s 0m0.020000s) 304. Constant Expressions (2) (syn_misc.at:5450): ok (0m0.070000s 0m0.010000s) 305. Constant Expressions (3) (syn_misc.at:5506): ok (0m0.060000s 0m0.020000s) 306. Constant Expressions (4) (syn_misc.at:5555): ok (0m0.060000s 0m0.020000s) 307. Constant Expressions (5) (syn_misc.at:5588): ok (0m0.130000s 0m0.040000s) 308. Missing imperative statements (syn_misc.at:5688): ok (0m0.150000s 0m0.020000s) 310. CONSTANT LENGTH / BYTE-LENGTH (syn_misc.at:5818): ok (0m0.070000s 0m0.010000s) 311. ANY LENGTH/NUMERIC with incorrect PIC (syn_misc.at:5842): ok (0m0.070000s 0m0.010000s) 312. VOLATILE clause (syn_misc.at:5879): ok (0m0.070000s 0m0.010000s) 313. SET SOURCEFORMAT syntax checks (syn_misc.at:5922): ok (0m0.020000s 0m0.010000s) 314. WHEN-COMPILED register in dialect (syn_misc.at:5949): ok (0m0.470000s 0m0.100000s) 315. LIN / COL register (syn_misc.at:5975): ok (0m0.310000s 0m0.060000s) 316. tokens consisting of multiple words (syn_misc.at:6007): ok (0m0.060000s 0m0.020000s) 317. zero-length literals (syn_misc.at:6034): ok (0m0.140000s 0m0.030000s) 318. @OPTIONS parsing (syn_misc.at:6095): ok (0m0.070000s 0m0.010000s) 319. system routines with wrong number of parameters (syn_misc.at:6137): ok (0m0.060000s 0m0.020000s) 320. invalid use of condition-name (syn_misc.at:6166): ok (0m0.070000s 0m0.020000s) 321. XML GENERATE syntax checks (syn_misc.at:6230): ok (0m0.070000s 0m0.020000s) 322. IBM Data Division (syn_misc.at:6447): ok (0m0.220000s 0m0.050000s) 323. BASED clause, ALLOCATE / FREE statements (syn_misc.at:6526): ok (0m0.070000s 0m0.010000s) 324. CONTINUE statement (syn_misc.at:6584): ok (0m0.110000s 0m0.030000s) 325. conflict markers (syn_misc.at:6628): ok (0m0.140000s 0m0.030000s) 326. Group Usage Error (syn_misc.at:6686): ok (0m0.120000s 0m0.010000s) 327. OSVS I/O extensions (syn_misc.at:6728): ok (0m0.070000s 0m0.010000s) 328. very long literal in error message (syn_misc.at:6795): ok (0m0.060000s 0m0.020000s) 329. MOVE SPACE TO numeric or numeric-edited item (syn_move.at:37): ok (0m0.070000s 0m0.010000s) 330. MOVE ZERO TO alphabetic item (syn_move.at:63): ok (0m0.060000s 0m0.020000s) 331. MOVE alphabetic TO x (syn_move.at:89): ok (0m0.070000s 0m0.010000s) 332. MOVE alphanumeric TO x (syn_move.at:120): ok (0m0.070000s 0m0.010000s) 333. MOVE alphanumeric-edited TO x (syn_move.at:148): ok (0m0.070000s 0m0.010000s) 334. MOVE numeric (integer) TO x (syn_move.at:179): ok (0m0.070000s 0m0.010000s) 335. MOVE numeric (non-integer) TO x (syn_move.at:209): ok (0m0.070000s 0m0.010000s) 336. MOVE numeric-edited TO x (syn_move.at:241): ok (0m0.070000s 0m0.010000s) 337. CORRESPONDING - Operands must be groups (syn_move.at:276): ok (0m0.060000s 0m0.020000s) 338. CORRESPONDING - Target has no matching items (syn_move.at:306): ok (0m0.060000s 0m0.020000s) 339. MOVE to erroneous field (syn_move.at:332): ok (0m0.070000s 0m0.010000s) 340. Overlapping MOVE (syn_move.at:355): ok (0m1.920000s 0m0.310000s) 341. invalid source for MOVE (syn_move.at:454): ok (0m0.070000s 0m0.010000s) 342. invalid target for MOVE (syn_move.at:484): ok (0m0.060000s 0m0.020000s) 343. SET error (syn_move.at:520): ok (0m0.080000s 0m0.000000s) 344. MOVE FIGURATIVE to NUMERIC (syn_move.at:552): ok (0m0.340000s 0m0.070000s) 345. Category check of Format 1 (syn_multiply.at:28): ok (0m0.070000s 0m0.010000s) 346. Category check of Format 2 (syn_multiply.at:64): ok (0m0.060000s 0m0.020000s) 347. Category check of literals (syn_multiply.at:102): ok (0m0.070000s 0m0.010000s) 348. Flexible ACCEPT/DISPLAY syntax (syn_screen.at:24): ok (0m0.070000s 0m0.010000s) 349. Duplicate ACCEPT/DISPLAY clauses (syn_screen.at:92): ok (0m0.070000s 0m0.010000s) 350. AT clause (syn_screen.at:121): ok (0m0.070000s 0m0.010000s) 351. ACCEPT/DISPLAY extensions detection (syn_screen.at:165): ok (0m0.060000s 0m0.020000s) 352. FROM clause (syn_screen.at:211): ok (0m0.060000s 0m0.010000s) 353. Incorrect USAGE clause (syn_screen.at:237): ok (0m0.070000s 0m0.010000s) 354. SCREEN SECTION clause numbers (syn_screen.at:268): ok (0m0.070000s 0m0.010000s) 355. Screen clauses (syn_screen.at:300): ok (0m0.080000s 0m0.000000s) 356. ACCEPT ON EXCEPTION/ESCAPE (syn_screen.at:326): ok (0m0.070000s 0m0.010000s) 357. Referencing 88-level (syn_screen.at:356): ok (0m0.070000s 0m0.010000s) 358. Conflicting screen clauses (syn_screen.at:387): ok (0m0.140000s 0m0.030000s) 359. Redundant screen clauses (syn_screen.at:448): ok (0m0.060000s 0m0.020000s) 360. Screen item OCCURS w-/wo relative LINE/COL (syn_screen.at:481): ok (0m0.210000s 0m0.050000s) 361. VALUE clause missing (syn_screen.at:541): ok (0m0.070000s 0m0.010000s) 362. FULL on numeric item (syn_screen.at:565): ok (0m0.060000s 0m0.010000s) 363. Compiler-specific SCREEN SECTION clause rules (syn_screen.at:589): ok (0m0.440000s 0m0.090000s) 364. MS-COBOL position-spec (syn_screen.at:747): ok (0m0.150000s 0m0.020000s) 365. Screen with invalid FROM clause (syn_screen.at:799): ok (0m0.150000s 0m0.020000s) 366. SET ADDRESS OF item (syn_set.at:24): ok (0m0.070000s 0m0.010000s) 367. SET item TO 88-level (syn_set.at:53): ok (0m0.070000s 0m0.010000s) 368. ANY LENGTH / NUMERIC as function RETURNING item (syn_functions.at:22): ok (0m0.120000s 0m0.050000s) 369. REPOSITORY INTRINSIC phrase (syn_functions.at:64): ok (0m0.060000s 0m0.020000s) 370. REPOSITORY FUNCTION phrase (syn_functions.at:87): ok (0m0.070000s 0m0.010000s) 371. Redundant REPOSITORY entries (syn_functions.at:135): ok (0m0.070000s 0m0.010000s) 372. Missing prototype/definition (syn_functions.at:174): ok (0m0.070000s 0m0.010000s) 373. Empty function (syn_functions.at:205): ok (0m0.060000s 0m0.020000s) 374. Function definition inside program (syn_functions.at:232): ok (0m0.070000s 0m0.010000s) 375. Intrinsic functions: dialect (syn_functions.at:255): ok (0m0.130000s 0m0.020000s) 376. Intrinsic functions: replaced (syn_functions.at:280): ok (0m0.130000s 0m0.040000s) 377. Intrinsic functions: number of arguments (syn_functions.at:324): ok (0m0.070000s 0m0.010000s) 378. Intrinsic functions: reference modification (syn_functions.at:364): ok (0m0.070000s 0m0.010000s) 379. Intrinsic functions: Parameter type (syn_functions.at:412): ok (0m0.060000s 0m0.020000s) 380. invalid formatted date/time args (syn_functions.at:435): ok (0m0.070000s 0m0.010000s) 381. invalid formats w/ DECIMAL-POINT IS COMMA (syn_functions.at:516): ok (0m0.070000s 0m0.010000s) 382. Specified offset and SYSTEM-OFFSET (syn_functions.at:550): ok (0m0.070000s 0m0.010000s) 383. FUNCTION LENGTH / BYTE-LENGTH (syn_functions.at:574): ok (0m0.060000s 0m0.020000s) 384. Minimal lines per listing pages (listings.at:21): ok (0m0.490000s 0m0.110000s) 385. COPY within comment (listings.at:84): ok (0m0.190000s 0m0.050000s) 386. Replacement w/o strings (listings.at:158): ok (0m0.080000s 0m0.030000s) 387. COPY replacement order (listings.at:220): ok (0m0.180000s 0m0.090000s) 388. COPY separators (listings.at:321): ok (0m0.090000s 0m0.020000s) 389. COPY partial replacement (listings.at:386): ok (0m0.170000s 0m0.070000s) 390. COPY LEADING replacement (listings.at:600): ok (0m0.090000s 0m0.030000s) 391. COPY TRAILING replacement (listings.at:669): ok (0m0.090000s 0m0.030000s) 392. COPY recursive replacement (listings.at:739): ok (0m0.100000s 0m0.010000s) 393. COPY multiple files (listings.at:804): ok (0m0.090000s 0m0.040000s) 394. Error/Warning messages (listings.at:1018): ok (0m0.570000s 0m0.240000s) 395. Two source files (listings.at:1387): ok (0m0.080000s 0m0.030000s) 396. Multiple programs in one file (listings.at:1454): ok (0m1.620000s 0m0.350000s) 397. Multiple programs in one compilation group (listings.at:1667): ok (0m0.840000s 0m0.140000s) 398. Wide listing (listings.at:1850): ok (0m0.190000s 0m0.050000s) 399. Symbols: simple (listings.at:1936): ok (0m0.270000s 0m0.090000s) 400. Symbols: pointer (listings.at:2099): ok (0m0.100000s 0m0.020000s) 401. Symbols: multiple programs/functions (listings.at:2377): ok (0m0.080000s 0m0.030000s) 402. Symbols: OCCURS/REDEFINES (listings.at:2503): ok (0m0.090000s 0m0.030000s) 403. Conditional compilation (listings.at:2615): ok (0m0.080000s 0m0.030000s) 404. File descriptions (listings.at:2674): ok (0m0.090000s 0m0.030000s) 405. Invalid PICTURE strings (listings.at:3029): ok (0m0.090000s 0m0.040000s) 406. Variable format (listings.at:3532): ok (0m0.080000s 0m0.030000s) 407. LISTING directive (listings.at:3575): ok (0m0.080000s 0m0.030000s) 408. Listing-directive statements (listings.at:3675): ok (0m0.120000s 0m0.030000s) 409. Eject page (listings.at:3743): ok (0m0.350000s 0m0.130000s) 410. Cross reference (listings.at:3937): ok (0m0.240000s 0m0.060000s) 411. Report Writer (listings.at:5458): ok (0m0.080000s 0m0.040000s) 412. huge REPLACE (listings.at:5765): ok (0m0.200000s 0m0.060000s) 413. DISPLAY literals (run_fundamental.at:24): ok (0m0.620000s 0m0.090000s) 414. DISPLAY literals, DECIMAL-POINT is COMMA (run_fundamental.at:86): ok (0m0.600000s 0m0.100000s) 415. Hexadecimal literal (run_fundamental.at:125): ok (0m0.880000s 0m0.160000s) 416. DISPLAY data items with VALUE clause (run_fundamental.at:166): ok (0m0.610000s 0m0.100000s) 417. DISPLAY data items with MOVE statement (run_fundamental.at:213): ok (0m0.620000s 0m0.090000s) 418. MOVE to edited item (1) (run_fundamental.at:267): ok (0m0.610000s 0m0.090000s) 419. MOVE to edited item (2) (run_fundamental.at:316): ok (0m0.620000s 0m0.100000s) 420. MOVE to item with simple and floating insertion (run_fundamental.at:365): ok (0m0.620000s 0m0.080000s) 421. MOVE to JUSTIFIED item (run_fundamental.at:400): ok (0m0.600000s 0m0.110000s) 422. MOVE integer literal to alphanumeric (run_fundamental.at:445): ok (0m0.610000s 0m0.090000s) 423. Compare FLOAT-LONG with floating-point literal (run_fundamental.at:470): ok (0m0.610000s 0m0.100000s) 424. Check for equality of FLOAT-SHORT / FLOAT-LONG (run_fundamental.at:523): ok (0m0.630000s 0m0.100000s) 425. Overlapping MOVE (run_fundamental.at:646): ok (0m1.600000s 0m0.260000s) 426. Overlapping MOVE (run_fundamental.at:747): ok (0m0.610000s 0m0.110000s) 427. IBM MOVE (run_fundamental.at:789): ok (0m0.610000s 0m0.100000s) 428. ALPHABETIC test (run_fundamental.at:828): ok (0m0.580000s 0m0.120000s) 429. ALPHABETIC-UPPER test (run_fundamental.at:860): ok (0m0.620000s 0m0.080000s) 430. ALPHABETIC-LOWER test (run_fundamental.at:892): ok (0m0.630000s 0m0.070000s) 431. GLOBAL at same level (run_fundamental.at:924): ok (0m0.660000s 0m0.080000s) 432. GLOBAL at lower level (run_fundamental.at:973): ok (0m0.660000s 0m0.080000s) 433. GLOBAL CONSTANT (run_fundamental.at:1022): ok (0m0.680000s 0m0.080000s) 434. GLOBAL identifiers from ENVIRONMENT DIVISION (run_fundamental.at:1107): ok (0m0.720000s 0m0.100000s) 435. Entry point visibility (1) (run_fundamental.at:1188): ok (0m0.960000s 0m0.160000s) 436. Entry point visibility (2) (run_fundamental.at:1220): ok (0m0.890000s 0m0.150000s) 437. Contained program visibility (1) (run_fundamental.at:1254): ok (0m0.680000s 0m0.070000s) 438. Contained program visibility (2) (run_fundamental.at:1309): ok (0m0.640000s 0m0.100000s) 439. Contained program visibility (3) (run_fundamental.at:1362): ok (0m0.650000s 0m0.090000s) 440. Contained program visibility (4) (run_fundamental.at:1413): ok (0m0.670000s 0m0.100000s) 441. CALL/CANCEL with program-prototype-name (run_fundamental.at:1468): ok (0m0.680000s 0m0.080000s) 442. GLOBAL FD (RELATIVE 1) (run_fundamental.at:1541): ok (0m0.640000s 0m0.090000s) 443. GLOBAL FD (INDEXED 1) (run_fundamental.at:1592): ok (0m0.660000s 0m0.080000s) 444. GLOBAL FD (RELATIVE 2) (run_fundamental.at:1645): ok (0m0.640000s 0m0.080000s) 445. GLOBAL FD (INDEXED 2) (run_fundamental.at:1695): ok (0m0.630000s 0m0.100000s) 446. CANCEL test (1) (run_fundamental.at:1747): ok (0m0.630000s 0m0.090000s) 447. CANCEL test (2) (run_fundamental.at:1774): ok (0m0.950000s 0m0.190000s) 448. CANCEL test (3) (run_fundamental.at:1814): ok (0m0.960000s 0m0.180000s) 449. Separate sign positions (1) (run_fundamental.at:1857): ok (0m0.590000s 0m0.110000s) 450. Separate sign positions (2) (run_fundamental.at:1881): ok (0m1.020000s 0m0.140000s) 451. Context sensitive words (1) (run_fundamental.at:1914): ok (0m0.590000s 0m0.110000s) 452. Context sensitive words (2) (run_fundamental.at:1937): ok (0m0.610000s 0m0.090000s) 453. Context sensitive words (3) (run_fundamental.at:1961): ok (0m0.620000s 0m0.070000s) 454. Context sensitive words (4) (run_fundamental.at:1985): ok (0m0.580000s 0m0.120000s) 455. Context sensitive words (5) (run_fundamental.at:2010): ok (0m0.590000s 0m0.100000s) 456. Context sensitive words (6) (run_fundamental.at:2033): ok (0m0.600000s 0m0.100000s) 457. Context sensitive words (7) (run_fundamental.at:2055): ok (0m0.620000s 0m0.100000s) 458. Context sensitive words (8) (run_fundamental.at:2082): ok (0m0.580000s 0m0.090000s) 459. ROUNDED AWAY-FROM-ZERO (run_fundamental.at:2109): ok (0m0.640000s 0m0.100000s) 460. ROUNDED NEAREST-AWAY-FROM-ZERO (run_fundamental.at:2172): ok (0m0.660000s 0m0.080000s) 461. ROUNDED NEAREST-EVEN (run_fundamental.at:2235): ok (0m0.650000s 0m0.090000s) 462. ROUNDED NEAREST-TOWARD-ZERO (run_fundamental.at:2298): ok (0m0.640000s 0m0.100000s) 463. ROUNDED TOWARD-GREATER (run_fundamental.at:2361): ok (0m0.640000s 0m0.100000s) 464. ROUNDED TOWARD-LESSER (run_fundamental.at:2424): ok (0m0.650000s 0m0.090000s) 465. ROUNDED TRUNCATION (run_fundamental.at:2487): ok (0m0.660000s 0m0.090000s) 466. Numeric operations (1) (run_fundamental.at:2550): ok (0m0.620000s 0m0.090000s) 467. Numeric operations (2) (run_fundamental.at:2594): ok (0m0.730000s 0m0.120000s) 468. Numeric operations (3) (run_fundamental.at:2900): ok (0m0.770000s 0m0.100000s) 469. Numeric operations (4) (run_fundamental.at:3206): ok (0m0.740000s 0m0.120000s) 470. Numeric operations (5) (run_fundamental.at:3512): ok (0m0.770000s 0m0.100000s) 471. Numeric operations (6) (run_fundamental.at:3818): ok (0m0.910000s 0m0.160000s) 472. Numeric operations (7) (run_fundamental.at:3887): ok (0m0.660000s 0m0.080000s) 473. Numeric operations (8) (run_fundamental.at:4179): ok (0m0.630000s 0m0.110000s) 474. ADD CORRESPONDING (run_fundamental.at:4229): ok (0m0.630000s 0m0.080000s) 475. ADD CORRESPONDING no match (run_fundamental.at:4277): ok (0m0.630000s 0m0.080000s) 476. SYNC in OCCURS (run_fundamental.at:4327): ok (0m0.660000s 0m0.080000s) 477. 88 level with THRU (run_fundamental.at:4367): ok (0m0.650000s 0m0.090000s) 478. 88 level with FILLER (run_fundamental.at:4462): ok (0m0.580000s 0m0.110000s) 479. 88 level with FALSE IS clause (run_fundamental.at:4491): ok (0m0.590000s 0m0.100000s) 480. BLANK WHEN ZERO (run_fundamental.at:4519): ok (0m0.590000s 0m0.110000s) 481. MULTIPLY BY literal in INITIAL program (run_fundamental.at:4549): ok (0m0.640000s 0m0.090000s) 482. debugging lines (not active) (run_fundamental.at:4573): ok (0m0.620000s 0m0.070000s) 483. debugging lines (-fdebugging-line) (run_fundamental.at:4596): ok (0m0.620000s 0m0.070000s) 484. debugging lines (WITH DEBUGGING MODE) (run_fundamental.at:4619): ok (0m0.630000s 0m0.070000s) 485. debugging lines, free format (not active) (run_fundamental.at:4645): ok (0m0.580000s 0m0.110000s) 486. debugging lines, free format (-fdebugging-line) (run_fundamental.at:4668): ok (0m0.600000s 0m0.090000s) 487. USE FOR DEBUGGING (no DEBUGGING MODE) (run_fundamental.at:4691): ok (0m0.620000s 0m0.090000s) 488. USE FOR DEBUGGING (COB_SET_DEBUG deactivated) (run_fundamental.at:4736): ok (0m0.650000s 0m0.080000s) 489. USE FOR DEBUGGING ON ALL PROCEDURES (run_fundamental.at:4781): ok (0m0.640000s 0m0.080000s) 490. USE FOR DEBUGGING ON procedure (run_fundamental.at:4832): ok (0m0.650000s 0m0.080000s) 491. USE FOR DEBUGGING (COB_SET_DEBUG switched) (run_fundamental.at:4880): ok (0m0.630000s 0m0.100000s) 492. USE FOR DEBUGGING ON [ALL] REFERENCES OF field (run_fundamental.at:4929): ok (0m0.620000s 0m0.110000s) 493. USE FOR DEBUGGING, reference within DEBUGGING (run_fundamental.at:4997): ok (0m0.610000s 0m0.120000s) 495. USE FOR DEBUGGING, reference with OCCURS (run_fundamental.at:5088): ok (0m0.620000s 0m0.090000s) 497. USE FOR DEBUGGING file (run_fundamental.at:5158): ok (0m0.640000s 0m0.110000s) 498. Abbreviated Expressions (run_fundamental.at:5203): ok (0m0.670000s 0m0.110000s) 499. integer arithmetic on floating-point var (run_fundamental.at:5309): ok (0m0.610000s 0m0.100000s) 500. Subscript out of bounds (run_subscripts.at:26): ok (0m1.230000s 0m0.190000s) 501. Value of DEPENDING ON N out of bounds (run_subscripts.at:71): ok (0m1.250000s 0m0.170000s) 502. Subscript bounds with OCCURS DEPENDING ON (run_subscripts.at:122): ok (0m0.630000s 0m0.070000s) 503. Subscript by arithmetic expression (run_subscripts.at:148): ok (0m0.610000s 0m0.090000s) 504. length of ODO w/- reference modification (run_subscripts.at:179): ok (0m0.630000s 0m0.110000s) 505. SEARCH ALL with OCCURS DEPENDING ON (run_subscripts.at:235): ok (0m0.620000s 0m0.110000s) 506. Static reference modification (run_refmod.at:25): ok (0m0.610000s 0m0.100000s) 507. Dynamic reference modification (run_refmod.at:57): ok (0m0.610000s 0m0.100000s) 508. Offset underflow (run_refmod.at:94): ok (0m0.620000s 0m0.080000s) 509. Offset overflow (run_refmod.at:118): ok (0m1.840000s 0m0.280000s) 510. Length underflow (run_refmod.at:165): ok (0m0.580000s 0m0.120000s) 511. Length overflow (run_refmod.at:189): ok (0m1.210000s 0m0.200000s) 512. Length overflow with offset (run_refmod.at:231): ok (0m0.600000s 0m0.100000s) 513. Test Reference Modification (run_refmod.at:254): ok (0m0.730000s 0m0.110000s) 514. ACCEPT OMITTED (simple) (run_accept.at:28): ok (0m0.600000s 0m0.090000s) 515. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (1) (run_accept.at:54): ok (0m0.650000s 0m0.070000s) 516. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (2) (run_accept.at:121): ok (0m0.600000s 0m0.120000s) 517. ACCEPT DATE / DAY and intrinsic functions (1) (run_accept.at:204): ok (0m0.620000s 0m0.090000s) 518. ACCEPT DATE / DAY and intrinsic functions (2) (run_accept.at:241): ok (0m0.610000s 0m0.100000s) 519. ACCEPT OMITTED (SCREEN) (run_accept.at:286): ok (0m0.630000s 0m0.070000s) 520. INITIALIZE group entry with OCCURS (run_initialize.at:27): ok (0m0.610000s 0m0.090000s) 521. INITIALIZE OCCURS with numeric edited (run_initialize.at:55): ok (0m0.610000s 0m0.100000s) 522. INITIALIZE OCCURS with SIGN LEADING / TRAILING (run_initialize.at:88): ok (0m0.640000s 0m0.090000s) 523. INITIALIZE complex group (1) (run_initialize.at:159): ok (0m0.600000s 0m0.090000s) 524. INITIALIZE complex group (2) (run_initialize.at:187): ok (0m0.600000s 0m0.100000s) 525. INITIALIZE with REDEFINES (run_initialize.at:215): ok (0m0.590000s 0m0.110000s) 526. INITIALIZE with FILLER (run_initialize.at:242): ok (0m0.620000s 0m0.100000s) 527. INITIALIZE of EXTERNAL data items (run_initialize.at:309): ok (0m0.640000s 0m0.070000s) 528. INITIALIZE with reference modification (run_initialize.at:360): ok (0m0.610000s 0m0.090000s) 529. Comma separator without space (run_misc.at:23): ok (0m0.610000s 0m0.090000s) 530. DECIMAL-POINT is COMMA (1) (run_misc.at:44): ok (0m0.600000s 0m0.100000s) 531. DECIMAL-POINT is COMMA (2) (run_misc.at:72): ok (0m0.610000s 0m0.090000s) 532. DECIMAL-POINT is COMMA (3) (run_misc.at:100): ok (0m0.610000s 0m0.080000s) 533. DECIMAL-POINT is COMMA (4) (run_misc.at:128): ok (0m0.610000s 0m0.090000s) 534. DECIMAL-POINT is COMMA (5) (run_misc.at:156): ok (0m0.650000s 0m0.080000s) 535. CURRENCY SIGN (run_misc.at:190): ok (0m0.590000s 0m0.110000s) 537. LOCAL-STORAGE (1) (run_misc.at:268): ok (0m0.950000s 0m0.170000s) 538. LOCAL-STORAGE (2) (run_misc.at:304): ok (0m1.290000s 0m0.260000s) 539. EXTERNAL data item (run_misc.at:352): ok (0m0.960000s 0m0.160000s) 540. EXTERNAL AS data item (run_misc.at:394): ok (0m0.980000s 0m0.150000s) 542. MOVE to itself (run_misc.at:528): ok (0m0.590000s 0m0.110000s) 543. MOVE with refmod (run_misc.at:554): ok (0m0.620000s 0m0.080000s) 544. MOVE with refmod (variable) (run_misc.at:578): ok (0m0.610000s 0m0.090000s) 545. MOVE with group refmod (run_misc.at:604): ok (0m0.610000s 0m0.090000s) 546. MOVE indexes (run_misc.at:629): ok (0m0.620000s 0m0.080000s) 547. MOVE X'00' (run_misc.at:655): ok (0m0.850000s 0m0.200000s) 548. MOVE Z'literal' (run_misc.at:690): ok (0m0.620000s 0m0.080000s) 549. Floating continuation indicator (run_misc.at:732): ok (0m0.590000s 0m0.110000s) 550. Fixed continuation indicator (run_misc.at:754): ok (0m0.630000s 0m0.080000s) 551. Concatenation operator (run_misc.at:796): ok (0m0.630000s 0m0.070000s) 552. SOURCE FIXED/FREE directives (run_misc.at:820): ok (0m0.630000s 0m0.070000s) 553. Level 01 subscripts (run_misc.at:857): ok (0m0.030000s 0m0.020000s) 554. Class check with reference modification (run_misc.at:879): ok (0m0.630000s 0m0.070000s) 555. Index and parenthesized expression (run_misc.at:903): ok (0m0.600000s 0m0.100000s) 556. Alphanumeric and binary numeric (run_misc.at:927): ok (0m0.620000s 0m0.080000s) 557. Non-numeric data in numeric items (run_misc.at:952): ok (0m2.430000s 0m0.400000s) 558. Dynamic call with static linking (run_misc.at:1026): ok (0m1.490000s 0m0.280000s) 559. Static call with static linking (run_misc.at:1055): ok (0m2.200000s 0m0.400000s) 560. Dynamic CALL with ON EXCEPTION (run_misc.at:1086): ok (0m0.940000s 0m0.190000s) 561. Static CALL with ON EXCEPTION (run_misc.at:1118): ok (0m2.220000s 0m0.420000s) 562. CALL m1. CALL m2. CALL m1. (run_misc.at:1158): ok (0m1.350000s 0m0.250000s) 563. Recursive CALL of RECURSIVE program (run_misc.at:1213): ok (0m1.310000s 0m0.240000s) 564. Recursive CALL of INITIAL program (run_misc.at:1270): ok (0m1.270000s 0m0.280000s) 565. Recursive CALL with RECURSIVE assumed (run_misc.at:1321): ok (0m1.320000s 0m0.230000s) 566. Recursive CALL with ON EXCEPTION (run_misc.at:1369): ok (0m1.340000s 0m0.210000s) 567. Multiple calls of INITIAL program (run_misc.at:1426): ok (0m1.010000s 0m0.160000s) 568. CALL binary literal parameter/LENGTH OF (run_misc.at:1487): ok (0m1.530000s 0m0.250000s) 569. CALL binary literal (run_misc.at:1542): ok (0m0.650000s 0m0.090000s) 570. INSPECT REPLACING LEADING ZEROS BY SPACES (run_misc.at:1582): ok (0m0.590000s 0m0.110000s) 571. INSPECT No repeat conversion check (run_misc.at:1606): ok (0m0.610000s 0m0.080000s) 572. INSPECT CONVERTING alphabet (run_misc.at:1630): ok (0m0.600000s 0m0.100000s) 573. INSPECT CONVERTING TO figurative constant (run_misc.at:1665): ok (0m0.610000s 0m0.090000s) 574. INSPECT CONVERTING NULL (run_misc.at:1689): ok (0m0.610000s 0m0.080000s) 575. INSPECT CONVERTING TO NULL (run_misc.at:1713): ok (0m0.600000s 0m0.090000s) 576. INSPECT REPLACING figurative constant (run_misc.at:1737): ok (0m0.610000s 0m0.090000s) 577. INSPECT TALLYING BEFORE (run_misc.at:1761): ok (0m0.610000s 0m0.090000s) 578. INSPECT TALLYING AFTER (run_misc.at:1796): ok (0m0.590000s 0m0.110000s) 579. INSPECT REPLACING TRAILING ZEROS BY SPACES (run_misc.at:1831): ok (0m0.610000s 0m0.080000s) 580. INSPECT REPLACING complex (run_misc.at:1855): ok (0m0.620000s 0m0.080000s) 581. SWITCHES (environment COB_SWITCH_n and SET) (run_misc.at:1881): ok (0m0.620000s 0m0.100000s) 582. Nested PERFORM (run_misc.at:1978): ok (0m0.600000s 0m0.100000s) 583. PERFORM VARYING BY -0.2 (run_misc.at:2002): ok (0m0.600000s 0m0.100000s) 584. PERFORM VARYING BY phrase omitted (run_misc.at:2029): ok (0m0.640000s 0m0.100000s) 585. EXIT PERFORM (run_misc.at:2060): ok (0m0.620000s 0m0.080000s) 586. EXIT PERFORM CYCLE (run_misc.at:2085): ok (0m0.610000s 0m0.090000s) 587. EXIT PARAGRAPH (run_misc.at:2110): ok (0m0.610000s 0m0.090000s) 588. EXIT SECTION (run_misc.at:2142): ok (0m0.600000s 0m0.100000s) 589. PERFORM FOREVER / PERFORM UNTIL EXIT (run_misc.at:2176): ok (0m0.600000s 0m0.100000s) 590. PERFORM inline (1) (run_misc.at:2217): ok (0m0.610000s 0m0.080000s) 591. PERFORM inline (2) (run_misc.at:2244): ok (0m0.600000s 0m0.090000s) 592. Non-overflow after overflow (run_misc.at:2269): ok (0m0.640000s 0m0.090000s) 593. PERFORM ... CONTINUE (run_misc.at:2299): ok (0m0.060000s 0m0.010000s) 594. STRING with subscript reference (run_misc.at:2316): ok (0m0.600000s 0m0.090000s) 595. STRING / UNSTRING NOT ON OVERFLOW (run_misc.at:2343): ok (0m0.660000s 0m0.080000s) 596. UNSTRING DELIMITED ALL LOW-VALUE (run_misc.at:2460): ok (0m0.610000s 0m0.100000s) 597. UNSTRING DELIMITED ALL SPACE-2 (run_misc.at:2495): ok (0m0.630000s 0m0.090000s) 598. UNSTRING DELIMITED POINTER (run_misc.at:2560): ok (0m0.640000s 0m0.080000s) 599. UNSTRING DELIMITER IN (run_misc.at:2614): ok (0m0.610000s 0m0.100000s) 600. UNSTRING with FUNCTION / literal (run_misc.at:2657): ok (0m0.670000s 0m0.060000s) 601. PICTURE COMP-X (run_misc.at:2727): ok (0m0.710000s 0m0.070000s) 602. SORT: table sort (run_misc.at:2804): ok (0m0.620000s 0m0.090000s) 603. SORT: table sort (2) (run_misc.at:2846): ok (0m0.690000s 0m0.100000s) 604. SORT: table sort (3) (run_misc.at:2971): ok (0m1.270000s 0m0.200000s) 605. SORT: EBCDIC table sort (run_misc.at:3064): ok (0m0.620000s 0m0.090000s) 606. PIC ZZZ-, ZZZ+ (run_misc.at:3102): ok (0m0.630000s 0m0.080000s) 607. PERFORM type OSVS (run_misc.at:3155): ok (0m0.620000s 0m0.100000s) 608. Sticky LINKAGE (run_misc.at:3192): ok (0m0.980000s 0m0.150000s) 609. COB_PRE_LOAD (run_misc.at:3239): ok (0m0.920000s 0m0.190000s) 610. COB_PRE_LOAD with entry points (run_misc.at:3265): ok (0m1.300000s 0m0.270000s) 611. Lookup ENTRY from main executable (run_misc.at:3336): ok (0m0.620000s 0m0.090000s) 612. COB_LOAD_CASE=UPPER test (run_misc.at:3377): ok (0m0.940000s 0m0.180000s) 613. ALLOCATE / FREE with BASED item (1) (run_misc.at:3403): ok (0m0.610000s 0m0.090000s) 614. ALLOCATE / FREE with BASED item (2) (run_misc.at:3430): ok (0m0.990000s 0m0.170000s) 615. ALLOCATE CHARACTERS INITIALIZED TO (run_misc.at:3477): ok (0m0.620000s 0m0.090000s) 616. Initialized value with defaultbyte (run_misc.at:3518): ok (0m0.590000s 0m0.110000s) 617. CALL with OMITTED parameter (run_misc.at:3543): ok (0m0.960000s 0m0.170000s) 618. CALL in from C, cob_call_params explicitly set (run_misc.at:3582): ok (0m0.660000s 0m0.140000s) 619. CALL in from C, cob_call_params unknown (run_misc.at:3641): ok (0m0.680000s 0m0.120000s) 620. CALL C with callback, PROCEDURE DIVISION EXTERN (run_misc.at:3699): ok (0m0.720000s 0m0.120000s) 621. CALL C with callback, ENTRY-CONVENTION EXTERN (run_misc.at:3767): ok (0m2.170000s 0m0.360000s) 622. CALL in from C with init missing / implicit (run_misc.at:3919): ok (0m1.340000s 0m0.190000s) 623. CALL STATIC C from COBOL (run_misc.at:3972): ok (0m0.640000s 0m0.130000s) 624. ANY LENGTH (1) (run_misc.at:4028): ok (0m0.950000s 0m0.180000s) 625. ANY LENGTH (2) (run_misc.at:4071): ok (0m0.960000s 0m0.160000s) 626. ANY LENGTH (3) (run_misc.at:4115): ok (0m0.640000s 0m0.090000s) 627. ANY LENGTH (4) (run_misc.at:4158): ok (0m0.660000s 0m0.070000s) 628. ANY LENGTH (5) (run_misc.at:4201): ok (0m0.360000s 0m0.090000s) 629. access to BASED item without allocation (run_misc.at:4226): ok (0m1.220000s 0m0.190000s) 630. access to OPTIONAL LINKAGE item not passed (run_misc.at:4267): ok (0m0.970000s 0m0.160000s) 631. STOP RUN WITH NORMAL STATUS (run_misc.at:4309): ok (0m0.580000s 0m0.110000s) 632. STOP RUN WITH ERROR STATUS (run_misc.at:4327): ok (0m0.620000s 0m0.070000s) 633. SYMBOLIC clause (run_misc.at:4345): ok (0m0.600000s 0m0.100000s) 634. OCCURS clause with 1 entry (run_misc.at:4382): ok (0m0.610000s 0m0.090000s) 635. Computing of different USAGEs w/o decimal point (run_misc.at:4431): ok (0m2.040000s 0m0.240000s) 636. Computing of different USAGEs w/- decimal point (run_misc.at:5067): ok (0m1.970000s 0m0.220000s) 637. C/C++ reserved words/predefined identifiers (run_misc.at:5702): ok (0m1.400000s 0m0.280000s) 638. ON EXCEPTION clause of DISPLAY (run_misc.at:6162): ok (0m0.620000s 0m0.080000s) 639. EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN (run_misc.at:6187): ok (0m0.620000s 0m0.090000s) 640. LINE/COLUMN 0 exceptions (run_misc.at:6228): ok (0m0.620000s 0m0.090000s) 641. SET LAST EXCEPTION TO OFF (run_misc.at:6266): ok (0m0.610000s 0m0.120000s) 642. void PROCEDURE (run_misc.at:6302): ok (0m0.980000s 0m0.140000s) 643. Figurative constants to numeric field (run_misc.at:6331): ok (0m1.370000s 0m0.190000s) 644. MF FIGURATIVE to NUMERIC (run_misc.at:6393): ok (0m0.790000s 0m0.140000s) 645. void PROCEDURE, NOTHING return (run_misc.at:6529): ok (0m0.970000s 0m0.160000s) 646. C API Test (run_misc.at:6559): ok (0m0.940000s 0m0.140000s) 647. Trace feature with EXTFH (run_misc.at:6883): ok (0m1.230000s 0m0.270000s) 648. Test trace feature (run_misc.at:8304): ok (0m1.080000s 0m0.140000s) 649. LINE SEQUENTIAL (run_misc.at:9628): ok (0m0.720000s 0m0.120000s) 650. Trace feature with subroutine (run_misc.at:10103): ok (0m1.520000s 0m0.250000s) 651. CALL with program prototypes (run_misc.at:11620): ok (0m0.650000s 0m0.110000s) 652. REDEFINES values on FILLER and INITIALIZE (run_misc.at:11676): ok (0m0.630000s 0m0.090000s) 653. PICTURE with constant-name (run_misc.at:11731): ok (0m0.680000s 0m0.110000s) 654. Quote marks in comment paragraphs (run_misc.at:11760): ok (0m1.230000s 0m0.160000s) 655. Numeric MOVE with/without -fbinary-truncate (run_misc.at:11786): ok (0m1.310000s 0m0.200000s) 656. Alphanumeric MOVE with truncation (run_misc.at:11846): ok (0m0.610000s 0m0.100000s) 657. PROGRAM-ID / CALL literal/variable with spaces (run_misc.at:11910): ok (0m0.660000s 0m0.110000s) 658. DEFAULT ROUNDED MODE (run_misc.at:11978): ok (0m0.630000s 0m0.100000s) 659. OCCURS INDEXED ASCENDING (run_misc.at:12008): ok (0m0.630000s 0m0.100000s) 660. ZERO unsigned and negative binary subscript (run_misc.at:12107): ok (0m1.290000s 0m0.180000s) 661. Default Arithmetic (1) (run_misc.at:12171): ok (0m0.700000s 0m0.100000s) 662. Default Arithmetic Test (2) (run_misc.at:12275): ok (0m0.670000s 0m0.090000s) 663. OSVS Arithmetic (1) (run_misc.at:12326): ok (0m0.740000s 0m0.070000s) 664. OSVS Arithmetic Test (2) (run_misc.at:12443): ok (0m0.720000s 0m0.080000s) 665. SET CONSTANT directive (run_misc.at:12500): ok (0m1.890000s 0m0.290000s) 666. DEFINE OVERRIDE (run_misc.at:12603): ok (0m0.580000s 0m0.130000s) 667. DEFINE Defaults (run_misc.at:12669): ok (0m0.600000s 0m0.100000s) 668. 78 VALUE (run_misc.at:12735): ok (0m0.620000s 0m0.090000s) 669. 01 CONSTANT (run_misc.at:12803): ok (0m0.650000s 0m0.070000s) 670. DISPLAY UPON (run_misc.at:12883): skipped (run_misc.at:12884) 671. FLOAT-DECIMAL w/o SIZE ERROR (run_misc.at:12976): ok (0m12.960000s 0m0.110000s) 672. FLOAT-SHORT / FLOAT-LONG w/o SIZE ERROR (run_misc.at:13150): ok (0m0.770000s 0m0.080000s) 673. FLOAT-SHORT with SIZE ERROR (run_misc.at:13349): ok (0m0.660000s 0m0.090000s) 674. FLOAT-LONG with SIZE ERROR (run_misc.at:13400): ok (0m0.670000s 0m0.090000s) 675. EC-SIZE-ZERO-DIVIDE (run_misc.at:13457): ok (0m0.650000s 0m0.090000s) 676. EC-SIZE-OVERFLOW (run_misc.at:13502): ok (0m0.650000s 0m0.080000s) 677. Constant Expressions (run_misc.at:13535): ok (0m0.640000s 0m0.090000s) 678. ENTRY FOR GO TO / GO TO ENTRY (run_misc.at:13624): ok (0m0.680000s 0m0.110000s) 679. PERFORM VARYING Float (run_misc.at:13714): ok (0m0.610000s 0m0.100000s) 680. Test PICTURE with Edit mask (run_misc.at:13752): ok (0m0.630000s 0m0.100000s) 681. COMP-3 Index (run_misc.at:13783): ok (0m0.700000s 0m0.060000s) 682. POINTER (run_misc.at:13819): ok (0m0.670000s 0m0.090000s) 683. Figurative constants to numeric field (run_misc.at:13858): ok (0m1.370000s 0m0.180000s) 684. READY TRACE / RESET TRACE (run_misc.at:13922): ok (0m4.220000s 0m0.800000s) 685. Test dump feature (run_misc.at:14229): ok (0m1.780000s 0m0.210000s) 686. Test COBOL-C interface (run_misc.at:14698): ok (0m0.880000s 0m0.140000s) 687. COBOL2002 SYNC (run_misc.at:14863): ok (0m0.780000s 0m0.130000s) 688. NO Subscript (run_misc.at:15491): ok (0m0.700000s 0m0.080000s) 689. NO Subscript ACU (run_misc.at:15562): skipped (run_misc.at:15564) 690. IBM SYNC (run_misc.at:15633): ok (0m0.880000s 0m0.130000s) 691. MF IBMCOMP SYNC (run_misc.at:16285): ok (0m0.900000s 0m0.130000s) 692. MF SYNC (run_misc.at:16937): ok (0m0.910000s 0m0.110000s) 693. default SYNC (run_misc.at:17589): ok (0m0.860000s 0m0.110000s) 694. Group Usage 1 (run_misc.at:18240): ok (0m0.660000s 0m0.090000s) 695. Group Usage 2 (run_misc.at:18282): ok (0m0.660000s 0m0.090000s) 696. MF COMP-5 noibmcomp (run_misc.at:18323): ok (0m0.660000s 0m0.090000s) 697. MF COMP-5 (run_misc.at:18355): ok (0m0.650000s 0m0.100000s) 698. Test HEX String (run_misc.at:18387): ok (0m1.340000s 0m0.180000s) 699. READ INTO data item AT-END sequence (run_file.at:23): ok (0m0.620000s 0m0.100000s) 700. LINAGE and LINAGE-COUNTER sample (run_file.at:60): ok (0m0.690000s 0m0.090000s) 701. OUTPUT on INDEXED file to missing directory (run_file.at:346): ok (0m0.650000s 0m0.080000s) 702. First READ on empty SEQUENTIAL INDEXED file (run_file.at:391): ok (0m0.620000s 0m0.100000s) 703. READ NEXT without previous START (run_file.at:431): ok (0m0.650000s 0m0.100000s) 704. REWRITE a RELATIVE file with RANDOM access (run_file.at:509): ok (0m0.660000s 0m0.090000s) 705. File SORT, SEQUENTIAL (run_file.at:576): ok (0m0.660000s 0m0.080000s) 706. File SORT, SEQUENTIAL variable records (run_file.at:626): ok (0m0.680000s 0m0.080000s) 708. INDEXED File Sparse/Split keys (run_file.at:1497): ok (0m0.670000s 0m0.100000s) 709. File SORT, LINE SEQUENTIAL (run_file.at:1579): ok (0m0.660000s 0m0.080000s) 710. File SORT, LINE SEQUENTIAL same file (run_file.at:1638): ok (0m0.620000s 0m0.090000s) 711. File SORT, LINE SEQUENTIAL variable records (run_file.at:1685): ok (0m0.620000s 0m0.100000s) 712. File MERGE, LINE SEQUENTIAL variable records (run_file.at:1749): ok (0m0.630000s 0m0.090000s) 713. SORT nonexistent file (run_file.at:1840): ok (0m0.600000s 0m0.110000s) 714. SORT with INPUT/OUTPUT PROCEDUREs (run_file.at:1875): ok (0m0.650000s 0m0.090000s) 715. SORT with key1 ASCENDING, key2 DESCENDING (run_file.at:1965): ok (0m0.630000s 0m0.080000s) 716. ASSIGN with LOCAL-STORAGE item (run_file.at:2029): ok (0m0.620000s 0m0.090000s) 717. ASSIGN with LOCAL-STORAGE item and INITIAL prog (run_file.at:2066): ok (0m0.620000s 0m0.100000s) 718. ASSIGN with BASED data item and CHAINING (run_file.at:2106): ok (0m1.260000s 0m0.200000s) 719. ASSIGN with data item in LINKAGE (run_file.at:2186): ok (0m1.370000s 0m0.200000s) 720. INDEXED file sparse/split keys (run_file.at:2358): ok (0m0.940000s 0m0.120000s) 721. INDEXED file split keys WITH DUPLICATES (run_file.at:2878): ok (0m0.720000s 0m0.100000s) 722. INDEXED file variable length record (run_file.at:3036): ok (0m0.740000s 0m0.100000s) 723. INDEXED sample (run_file.at:3291): ok (0m0.770000s 0m0.150000s) 724. WRITE + REWRITE FILE name (run_file.at:3696): ok (0m0.690000s 0m0.120000s) 725. START RELATIVE (1) (run_file.at:3849): ok (0m0.650000s 0m0.070000s) 726. START RELATIVE (2) (run_file.at:3898): ok (0m0.650000s 0m0.090000s) 727. START RELATIVE (3) (run_file.at:3976): ok (0m0.680000s 0m0.100000s) 728. READ on OPTIONAL missing RELATIVE / SEQUENTIAL (run_file.at:4052): ok (0m0.680000s 0m0.090000s) 729. READ on OPTIONAL missing INDEXED file (run_file.at:4174): ok (0m0.610000s 0m0.110000s) 730. EXTERNAL RELATIVE file (run_file.at:4224): ok (0m0.610000s 0m0.090000s) 731. DECLARATIVES procedure referencing (run_file.at:4260): ok (0m0.610000s 0m0.100000s) 732. DECLARATIVES procedure referencing (multiple) (run_file.at:4300): ok (0m0.650000s 0m0.070000s) 733. System routines for directories (1) (run_file.at:4344): ok (0m0.620000s 0m0.090000s) 734. System routines for directories (2) (run_file.at:4386): ok (0m0.650000s 0m0.100000s) 735. System routines for files (run_file.at:4483): ok (0m1.350000s 0m0.170000s) 736. System routine CBL_COPY_FILE (run_file.at:4653): ok (0m0.590000s 0m0.110000s) 737. Default file external name (run_file.at:4688): ok (0m0.950000s 0m0.150000s) 738. SEQUENTIAL basic I/O (run_file.at:4762): ok (0m0.620000s 0m0.100000s) 739. LINE SEQUENTIAL basic I/O (run_file.at:4796): ok (0m0.680000s 0m0.110000s) 740. LINE SEQUENTIAL record truncation (run_file.at:4862): ok (0m0.630000s 0m0.090000s) 741. SEQUENTIAL file I/O with variable records (run_file.at:4909): ok (0m0.660000s 0m0.090000s) 742. LINE SEQUENTIAL file I/O with variable records (run_file.at:4984): ok (0m0.650000s 0m0.100000s) 743. SEQUENTIAL file REWRITE (run_file.at:5058): ok (0m0.720000s 0m0.090000s) 744. SEQUENTIAL file with LOCK MODE EXCLUSIVE (run_file.at:5167): ok (0m1.270000s 0m0.190000s) 745. SEQUENTIAL file with OPEN WITH LOCK (run_file.at:5235): ok (0m1.260000s 0m0.200000s) 746. SEQUENTIAL file with SHARING NO (run_file.at:5301): ok (0m1.240000s 0m0.210000s) 747. SEQUENTIAL file with SHARING READ ONLY (run_file.at:5369): ok (0m1.300000s 0m0.160000s) 749. RELATIVE SEQUENTIAL basic I/O (run_file.at:5515): ok (0m0.640000s 0m0.090000s) 750. RELATIVE RANDOM basic I/O (run_file.at:5549): ok (0m0.670000s 0m0.070000s) 751. RELATIVE SEQUENTIAL with variable records (run_file.at:5599): ok (0m0.650000s 0m0.090000s) 752. INDEXED SEQUENTIAL basic I/O (run_file.at:5673): ok (0m0.620000s 0m0.120000s) 753. INDEXED SEQUENTIAL with variable records (run_file.at:5711): ok (0m0.670000s 0m0.120000s) 754. INDEXED file with LOCK MODE EXCLUSIVE (run_file.at:5794): ok (0m1.250000s 0m0.210000s) 756. INDEXED file with SHARING NO (run_file.at:5947): ok (0m1.270000s 0m0.190000s) 757. INDEXED file with SHARING READ ONLY (run_file.at:6024): ok (0m1.290000s 0m0.200000s)