forked from OpenCobolIDE/GnuCOBOL-Win32-MinGW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestsuite.log
4457 lines (4430 loc) · 177 KB
/
testsuite.log
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
## ---------------------------------------- ##
## GnuCOBOL 2.0 test suite: GnuCOBOL Tests. ##
## ---------------------------------------- ##
testsuite: command line was:
$ ./testsuite
## ---------- ##
## ChangeLog. ##
## ---------- ##
|
| 2016-11-06 Simon 'sf-mensch/human' Sobisch <[email protected]>
|
| * configure.ac: limit PATCH_LEVEL to numeric, max 8 digits
| * configure.ac: use AS_HELP_STRING for all options
|
| 2016-11-05 Simon 'sf-mensch/human' Sobisch <[email protected]>
|
| * Bootstrap up to libtool 2.4.6 / automake 1.15
|
## --------- ##
## Platform. ##
## --------- ##
hostname = Arnold-THINK-PC
uname -m = i686
uname -r = 1.0.19(0.48/3/2)
uname -s = MINGW32_NT-6.1
uname -v = 2016-07-13 17:45
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /mingw/MSYS/gnu-cobol-2.0/tests
PATH: /mingw/MSYS/gnu-cobol-2.0/cobc
PATH: /mingw/MSYS/gnu-cobol-2.0/bin
PATH: /mingw/MSYS/gnu-cobol-2.0/libcob/.libs
PATH: /mingw/MSYS/gnu-cobol-2.0
PATH: /mingw/bin
PATH: /bin
PATH: /c/ProgramData/Oracle/Java/javapath
PATH: /c/Program Files/Common Files/Microsoft Shared/Windows Live
PATH: /c/Program Files (x86)/Common Files/Microsoft Shared/Windows Live
PATH: /c/Windows/system32
PATH: /c/Windows
PATH: /c/Windows/System32/Wbem
PATH: /c/Windows/System32/WindowsPowerShell/v1.0/
PATH: /c/Program Files (x86)/Common Files/Ulead Systems/MPEG
PATH: /c/bat
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='/mingw/MSYS/gnu-cobol-2.0/tests'
| at_srcdir='.'
| abs_srcdir='/mingw/MSYS/gnu-cobol-2.0/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/mingw/MSYS/gnu-cobol-2.0'
| at_top_build_prefix='../'
| abs_top_builddir='/mingw/MSYS/gnu-cobol-2.0'
|
| # 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-2016 Free Software Foundation, Inc.
| # Written by Keisuke Nishida, Roger While, Simon Sobisch
| #
| # 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 <http://www.gnu.org/licenses/>.
|
| # CC="gcc"
| COB_BIGENDIAN="no"
| COB_HAS_ISAM="yes"
| COB_HAS_CURSES="yes"
| COB_HAS_UTC_OFFSET="yes"
| COBC="${abs_top_builddir}/cobc/cobc"
| COBCRUN="${abs_top_builddir}/bin/cobcrun"
|
| 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}"
|
| OBJECT_EXT="o"
|
| PATHSEP=":"
|
| # Helper script to unify listings (repleace version, date, time)
| UNIFY_LISTING="${abs_srcdir}/listings-sed.sh"
|
| # unset all environment variables that are used in libcob for runtime configuration
| for cobenv in $($COBCRUN --runtime-conf | grep COB_ | cut -d: -f2); do unset $cobenv; done
|
| # For running the testsuite in Cygwin with non-Cygwin binaries we need a wrapper function
| _return_path () {
| echo "$1"
| }
|
| PATH="${abs_top_builddir}/cobc:${abs_top_builddir}/bin:${abs_top_builddir}/libcob/.libs:${PATH}"
| export PATH
| export COB_CFLAGS="-I${abs_top_srcdir} -I${abs_top_srcdir}/libcob -I/mingw/include -I/mingw/include -pipe"
| export COB_LDFLAGS="-L${abs_top_builddir}/libcob/.libs "
| export COB_LIBS="-L${abs_top_builddir}/libcob/.libs -lcob -lm -lgmp -L/mingw/lib -lintl -lpdcurses -ldb"
| export COB_CONFIG_DIR="${abs_top_srcdir}/config"
| export COB_RUNTIME_CONFIG="${COB_CONFIG_DIR}/runtime_empty.cfg"
| export COB_COPY_DIR="${abs_top_srcdir}/copy"
| export LD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$LD_LIBRARY_PATH"
| export DYLD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$DYLD_LIBRARY_PATH"
| export SHLIB_PATH="${abs_top_builddir}/libcob/.libs:$SHLIB_PATH"
| export LIBPATH="${abs_top_builddir}/libcob/.libs:$LIBPATH"
| export COB_LIBRARY_PATH="${abs_top_builddir}/extras:$COB_LIBRARY_PATH"
| export COB_UNIX_LF=YES
| export COB_HAS_ISAM
| if test "$MSYSTEM" = "MINGW32"; then
| # running MSYS builds as not-visible child processes result in
| # "Redirection is not supported"
| COB_HAS_CURSES="no"
| # Fix for testcases were cobc translates path to win32 equivalents
| PATHSEP=";"
| fi
| export COB_HAS_CURSES
| export COB_HAS_UTC_OFFSET
| export LC_ALL=C
## ---------------- ##
## Tested programs. ##
## ---------------- ##
./testsuite.at:23: /mingw/MSYS/gnu-cobol-2.0/cobc/cobc --version
cobc (GnuCOBOL) 2.0.0
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
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 Nov 13 2016 01:30:50
Packaged Nov 06 2016 22:36:19 UTC
C version "5.3.0"
## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Sun Nov 13 01:32:01 CST 2016
1. Compiler outputs (used_binaries.at:21): ok (0m0.000s 0m0.180s)
2. Source file not found (used_binaries.at:46): ok (0m0.015s 0m0.015s)
3. Compiler help and information (used_binaries.at:55): ok (0m0.060s 0m0.150s)
4. Using full path for cobc (used_binaries.at:68): ok (0m0.075s 0m0.076s)
5. cobcrun validation (used_binaries.at:88): ok (0m0.000s 0m0.150s)
6. cobcrun -M DSO entry argument (used_binaries.at:128): ok (0m0.000s 0m0.075s)
7. cobcrun -M directory/ default (used_binaries.at:183): ok (0m0.015s 0m0.106s)
8. cobcrun -M directory/dso alternate (used_binaries.at:221): ok (0m0.060s 0m0.075s)
9. cobcrun -M DSO entry multiple arguments (used_binaries.at:272): ok (0m0.030s 0m0.075s)
10. Compile from stdin (used_binaries.at:307): ok (0m0.015s 0m0.166s)
11. Run job after compilation (used_binaries.at:328): ok (0m0.015s 0m0.076s)
12. Run job with optional arguments (used_binaries.at:347): ok (0m0.075s 0m0.105s)
13. Invalid cobc option (used_binaries.at:369): ok (0m0.106s 0m0.121s)
14. cobc with standard configuration file (configuration.at:22): ok (0m0.000s 0m0.075s)
15. cobc dialect features for all -std (configuration.at:43): ok (0m0.090s 0m0.361s)
16. cobc with configuration file via -std (configuration.at:87): ok (0m0.030s 0m0.045s)
17. cobc with standard configuration file via -conf (configuration.at:108): ok (0m0.000s 0m0.091s)
18. cobc with own configuration file via -conf (configuration.at:129): ok (0m0.030s 0m0.090s)
19. cobc configuration: recursive include (configuration.at:158): ok (0m0.045s 0m0.105s)
20. cobc with -std and -conf (configuration.at:196): ok (0m0.045s 0m0.075s)
21. cobc compiler flag on command line (configuration.at:223): ok (0m0.000s 0m0.045s)
22. cobc compiler flag on command line (priority) (configuration.at:242): ok (0m0.015s 0m0.105s)
23. cobc configuration: entries (configuration.at:275): ok (0m0.030s 0m0.165s)
24. cobc configuration: conf missing (configuration.at:308): ok (0m0.030s 0m0.150s)
25. cobc configuration: conf optional (configuration.at:336): ok (0m0.015s 0m0.165s)
26. cobc configuration: incomplete (configuration.at:372): ok (0m0.000s 0m0.060s)
27. runtime configuration (configuration.at:446): ok (0m0.060s 0m0.152s)
28. runtime configuration file (configuration.at:465): ok (0m0.180s 0m0.377s)
29. runtime configuration: recursive include (configuration.at:500): ok (0m0.030s 0m0.075s)
30. runtime configuration: environment priority (configuration.at:529): ok (0m0.045s 0m0.106s)
31. runtime configuration: entries (configuration.at:542): ok (0m0.075s 0m0.075s)
32. runtime configuration: conf missing (configuration.at:623): ok (0m0.030s 0m0.196s)
33. runtime configuration: conf optional (configuration.at:652): ok (0m0.015s 0m0.030s)
34. COB_CONFIG_DIR test (configuration.at:665): ok (0m0.015s 0m0.075s)
35. COPY: within comment (syn_copy.at:21): ok (0m0.015s 0m0.045s)
36. COPY: file not found (syn_copy.at:49): ok (0m0.015s 0m0.060s)
37. COPY: replacement order (syn_copy.at:69): ok (0m0.030s 0m0.091s)
38. COPY: separators (syn_copy.at:96): ok (0m0.000s 0m0.154s)
39. COPY: partial replacement (syn_copy.at:125): ok (0m0.015s 0m0.120s)
40. COPY: LEADING replacement (syn_copy.at:154): ok (0m0.015s 0m0.136s)
41. COPY: TRAILING replacement (syn_copy.at:183): ok (0m0.030s 0m0.075s)
42. COPY: recursive replacement (syn_copy.at:212): ok (0m0.045s 0m0.135s)
43. COPY: fixed/free format (syn_copy.at:241): ok (0m0.015s 0m0.091s)
44. Invalid PROGRAM-ID (syn_definition.at:25): ok (0m0.030s 0m0.060s)
45. Invalid PROGRAM-ID type clause (1) (syn_definition.at:41): ok (0m0.000s 0m0.075s)
46. invalid PROGRAM-ID type clause (2) (syn_definition.at:57): ok (0m0.076s 0m0.030s)
47. INITIAL/RECURSIVE before COMMON (syn_definition.at:74): ok (0m0.015s 0m0.030s)
48. Undefined data name (syn_definition.at:106): ok (0m0.015s 0m0.075s)
49. Undefined group name (syn_definition.at:124): ok (0m0.000s 0m0.091s)
50. Undefined data name in group (syn_definition.at:145): ok (0m0.015s 0m0.060s)
51. Reference not a group name (syn_definition.at:168): ok (0m0.045s 0m0.045s)
52. Incomplete 01 definition (syn_definition.at:192): ok (0m0.000s 0m0.030s)
53. Same labels in different sections (syn_definition.at:212): ok (0m0.015s 0m0.045s)
54. Redefinition of 01 items (syn_definition.at:237): ok (0m0.015s 0m0.060s)
55. Redefinition of 01 and 02 items (syn_definition.at:256): ok (0m0.015s 0m0.045s)
56. Redefinition of 02 items (syn_definition.at:275): ok (0m0.000s 0m0.060s)
57. Redefinition of 77 items (syn_definition.at:295): ok (0m0.015s 0m0.076s)
58. Redefinition of 01 and 77 items (syn_definition.at:314): ok (0m0.030s 0m0.045s)
59. Redefinition of 88 items (syn_definition.at:333): ok (0m0.015s 0m0.045s)
60. Redefinition of program-name by other programs (syn_definition.at:354): ok (0m0.045s 0m0.075s)
61. Redefinition of program-name within program (syn_definition.at:420): ok (0m0.030s 0m0.090s)
62. Redefinition of function-prototype name (syn_definition.at:450): ok (0m0.000s 0m0.061s)
63. Data item with same name as program-name (syn_definition.at:473): ok (0m0.000s 0m0.045s)
64. Ambiguous reference to 02 items (syn_definition.at:500): ok (0m0.000s 0m0.061s)
65. Ambiguous reference to 02 and 03 items (syn_definition.at:526): ok (0m0.000s 0m0.060s)
66. Ambiguous reference with qualification (syn_definition.at:551): ok (0m0.000s 0m0.060s)
67. Unique reference with ambiguous qualifiers (syn_definition.at:580): ok (0m0.015s 0m0.030s)
68. Undefined procedure name (syn_definition.at:616): ok (0m0.015s 0m0.045s)
69. Redefinition of section names (syn_definition.at:636): ok (0m0.000s 0m0.060s)
70. Redefinition of section and paragraph names (syn_definition.at:656): ok (0m0.045s 0m0.045s)
71. Redefinition of paragraph names (syn_definition.at:676): ok (0m0.000s 0m0.060s)
72. Ambiguous reference to paragraph name (syn_definition.at:701): ok (0m0.030s 0m0.030s)
73. Non-matching level numbers (extension) (syn_definition.at:726): ok (0m0.030s 0m0.060s)
74. CALL BY VALUE alphanumeric item (extension) (syn_definition.at:749): ok (0m0.000s 0m0.030s)
75. Duplicate identification division header (syn_definition.at:771): ok (0m0.000s 0m0.045s)
76. Invalid environment division order (syn_definition.at:786): ok (0m0.000s 0m0.061s)
77. Function without END FUNCTION (syn_definition.at:813): ok (0m0.045s 0m0.045s)
78. Nested programs without END PROGRAM (syn_definition.at:827): ok (0m0.000s 0m0.060s)
79. Nested programs not in procedure division (syn_definition.at:849): ok (0m0.015s 0m0.060s)
80. Screen section starts with 78-level (syn_definition.at:868): ok (0m0.000s 0m0.030s)
81. Invalid PICTURE strings (syn_definition.at:884): ok (0m0.015s 0m0.091s)
82. PICTURE strings invalid with BLANK WHEN ZERO (syn_definition.at:1112): ok (0m0.015s 0m0.030s)
83. PICTURE strings invalid with USAGE (syn_definition.at:1134): ok (0m0.015s 0m0.077s)
84. Alphabet definition (syn_definition.at:1154): ok (0m0.030s 0m0.121s)
85. RENAMES item (syn_definition.at:1198): ok (0m0.000s 0m0.045s)
86. RENAMES of 01-, 66- and 77-level items (syn_definition.at:1265): ok (0m0.015s 0m0.045s)
87. Non-numeric subscript (syn_subscripts.at:23): ok (0m0.015s 0m0.061s)
88. Subscript range check (syn_subscripts.at:49): ok (0m0.000s 0m0.045s)
89. Subscript bounds with ODO (lower) (syn_subscripts.at:89): ok (0m0.000s 0m0.061s)
90. Subscript bounds with ODO (upper) (syn_subscripts.at:112): ok (0m0.015s 0m0.030s)
91. Subscripted item requires OCCURS clause (syn_subscripts.at:138): ok (0m0.000s 0m0.090s)
92. Number of subscripts (syn_subscripts.at:163): ok (0m0.030s 0m0.090s)
93. OCCURS with level 01 and 77 (syn_occurs.at:28): ok (0m0.030s 0m0.061s)
94. OCCURS with level 66 (syn_occurs.at:53): ok (0m0.030s 0m0.030s)
95. OCCURS with level 88 (syn_occurs.at:72): ok (0m0.015s 0m0.060s)
96. OCCURS with variable-occurrence data item (syn_occurs.at:91): ok (0m0.000s 0m0.121s)
97. Nested OCCURS clause (syn_occurs.at:149): ok (0m0.000s 0m0.046s)
98. OCCURS DEPENDING with wrong size (syn_occurs.at:186): ok (0m0.030s 0m0.060s)
99. OCCURS DEPENDING followed by another field (syn_occurs.at:222): ok (0m0.000s 0m0.091s)
100. OCCURS with unmatched DEPENDING / TO phrases (syn_occurs.at:263): ok (0m0.045s 0m0.120s)
101. OCCURS size check (syn_occurs.at:297): ok (0m0.015s 0m0.090s)
102. REDEFINES: not following entry-name (syn_redefines.at:28): ok (0m0.000s 0m0.060s)
103. REDEFINES: level 02 by 01 (syn_redefines.at:49): ok (0m0.015s 0m0.030s)
104. REDEFINES: level 03 by 02 (syn_redefines.at:70): ok (0m0.015s 0m0.060s)
105. REDEFINES: level 66 (syn_redefines.at:92): ok (0m0.045s 0m0.045s)
106. REDEFINES: level 88 (syn_redefines.at:114): ok (0m0.030s 0m0.060s)
107. REDEFINES: lower level number (syn_redefines.at:143): ok (0m0.000s 0m0.075s)
108. REDEFINES: with OCCURS (syn_redefines.at:169): ok (0m0.015s 0m0.091s)
109. REDEFINES: with subscript (syn_redefines.at:190): ok (0m0.015s 0m0.060s)
110. REDEFINES: with variable occurrence (syn_redefines.at:212): ok (0m0.015s 0m0.060s)
111. REDEFINES: with qualification (syn_redefines.at:247): ok (0m0.015s 0m0.045s)
112. REDEFINES: multiple redefinition (syn_redefines.at:273): ok (0m0.030s 0m0.090s)
113. REDEFINES: size exceeds (syn_redefines.at:301): ok (0m0.045s 0m0.030s)
114. REDEFINES: with VALUE (syn_redefines.at:334): ok (0m0.030s 0m0.045s)
115. REDEFINES: with intervention (syn_redefines.at:362): ok (0m0.030s 0m0.046s)
116. REDEFINES: within REDEFINES (syn_redefines.at:391): ok (0m0.000s 0m0.061s)
117. REDEFINES: non-referenced ambiguous item (syn_redefines.at:411): ok (0m0.015s 0m0.045s)
118. Numeric item (integer) (syn_value.at:43): ok (0m0.030s 0m0.046s)
119. Numeric item (non-integer) (syn_value.at:69): ok (0m0.015s 0m0.061s)
120. Numeric item with picture P (syn_value.at:92): ok (0m0.030s 0m0.015s)
121. Signed numeric literal (syn_value.at:124): ok (0m0.045s 0m0.030s)
122. Alphabetic item (syn_value.at:150): ok (0m0.015s 0m0.061s)
123. Alphanumeric item (syn_value.at:176): ok (0m0.030s 0m0.060s)
124. Alphanumeric group item (syn_value.at:198): ok (0m0.015s 0m0.045s)
125. Numeric-edited item (syn_value.at:233): ok (0m0.015s 0m0.030s)
126. Alphanumeric-edited item (syn_value.at:258): ok (0m0.030s 0m0.015s)
127. Implicit picture from value (syn_value.at:326): ok (0m0.030s 0m0.090s)
128. ASSIGN to device-name (syn_file.at:22): ok (0m0.015s 0m0.076s)
129. ASSIGN to printer-name (syn_file.at:89): ok (0m0.030s 0m0.090s)
130. SELECT without ASSIGN (syn_file.at:156): ok (0m0.000s 0m0.045s)
131. START on SEQUENTIAL file (syn_file.at:184): ok (0m0.015s 0m0.045s)
132. key items (syn_file.at:214): ok (0m0.015s 0m0.090s)
133. variable record length (syn_file.at:266): ok (0m0.030s 0m0.255s)
134. variable record length DEPENDING item (syn_file.at:370): ok (0m0.015s 0m0.090s)
135. DECLARATIVES invalid procedure reference (1) (syn_file.at:452): ok (0m0.000s 0m0.045s)
136. DECLARATIVES invalid procedure reference (2) (syn_file.at:492): ok (0m0.015s 0m0.120s)
137. DECLARATIVES invalid procedure reference (3) (syn_file.at:557): ok (0m0.015s 0m0.076s)
138. RECORDING MODE (syn_file.at:598): ok (0m0.015s 0m0.060s)
139. CODE-SET clause (syn_file.at:627): ok (0m0.015s 0m0.076s)
140. CODE-SET FOR clause (syn_file.at:663): ok (0m0.000s 0m0.076s)
141. REPORT SECTION clause numbers (syn_reportwriter.at:23): ok (0m0.015s 0m0.075s)
142. Ambiguous AND/OR (syn_misc.at:22): ok (0m0.015s 0m0.045s)
143. invalid expression (syn_misc.at:48): ok (0m0.000s 0m0.060s)
144. Missing headers (syn_misc.at:145): ok (0m0.015s 0m0.151s)
145. INITIALIZE constant (syn_misc.at:194): ok (0m0.030s 0m0.030s)
146. CLASS duplicate values (syn_misc.at:221): ok (0m0.015s 0m0.075s)
147. INSPECT invalid size (syn_misc.at:256): ok (0m0.015s 0m0.030s)
148. INSPECT invalid target (syn_misc.at:285): ok (0m0.000s 0m0.075s)
149. INSPECT missing keyword (syn_misc.at:308): ok (0m0.015s 0m0.060s)
150. INSPECT repeated keywords (syn_misc.at:329): ok (0m0.045s 0m0.045s)
151. INSPECT incomplete clause (syn_misc.at:361): ok (0m0.045s 0m0.030s)
152. INSPECT multiple BEFORE/AFTER clauses (syn_misc.at:383): ok (0m0.015s 0m0.030s)
153. Maximum data size (syn_misc.at:406): ok (0m0.030s 0m0.045s)
154. Unreachable statement (syn_misc.at:435): ok (0m0.030s 0m0.045s)
155. CRT STATUS (syn_misc.at:477): ok (0m0.000s 0m0.120s)
156. CURRENCY SIGN (syn_misc.at:519): ok (0m0.120s 0m0.331s)
157. SWITCHES (syn_misc.at:635): ok (0m0.030s 0m0.105s)
158. Unexpected mnemonic-name location (syn_misc.at:762): ok (0m0.030s 0m0.015s)
159. Wrong device for mnemonic-name (syn_misc.at:789): ok (0m0.000s 0m0.046s)
160. Missing mnemonic-name declaration (syn_misc.at:814): ok (0m0.046s 0m0.030s)
161. Unknown device in dialect (syn_misc.at:835): ok (0m0.000s 0m0.091s)
162. ACCEPT WITH ( NO ) UPDATE / DEFAULT (syn_misc.at:865): ok (0m0.015s 0m0.030s)
163. ACCEPT WITH AUTO / TAB (syn_misc.at:890): ok (0m0.000s 0m0.060s)
164. ACCEPT WITH SIZE (syn_misc.at:915): ok (0m0.000s 0m0.045s)
165. DISPLAY WITH SIZE (syn_misc.at:939): ok (0m0.015s 0m0.030s)
166. Source text after program-text area (syn_misc.at:961): ok (0m0.015s 0m0.045s)
167. Line overflow in Fixed-form / Free-form (syn_misc.at:982): ok (0m0.000s 0m0.165s)
168. Continuation Indicator - too many lines (syn_misc.at:1030): ok (0m0.045s 0m0.075s)
169. Continuation of COBOL words (syn_misc.at:1587): ok (0m0.075s 0m0.060s)
170. Literal too long (syn_misc.at:1608): ok (0m0.060s 0m0.363s)
171. Line and floating comments (syn_misc.at:1858): ok (0m0.151s 0m0.525s)
172. word length (syn_misc.at:2019): ok (0m0.045s 0m0.270s)
173. Floating-point literals (syn_misc.at:2135): ok (0m0.030s 0m0.135s)
174. X literals (syn_misc.at:2240): ok (0m0.015s 0m0.061s)
175. national literals (syn_misc.at:2267): ok (0m0.045s 0m0.060s)
176. NX literals (syn_misc.at:2297): ok (0m0.045s 0m0.090s)
177. Binary literals (syn_misc.at:2335): ok (0m0.000s 0m0.135s)
178. Binary-hexadecimal literals (syn_misc.at:2371): ok (0m0.075s 0m0.075s)
179. ACUCOBOL literals (syn_misc.at:2400): ok (0m0.015s 0m0.090s)
180. Adding/removing reserved words (syn_misc.at:2461): ok (0m0.015s 0m0.075s)
181. Adding aliases (syn_misc.at:2488): ok (0m0.030s 0m0.091s)
182. Complete specified word list (syn_misc.at:2522): ok (0m0.076s 0m0.075s)
183. ANY LENGTH item as BY VALUE formal parameter (syn_misc.at:2543): ok (0m0.030s 0m0.031s)
184. Swapped SOURCE- and OBJECT-COMPUTER (syn_misc.at:2566): ok (0m0.030s 0m0.045s)
185. NOT ON EXCEPTION phrases before ON EXCEPTION (syn_misc.at:2585): ok (0m0.015s 0m0.060s)
186. Wrong dialect hints (syn_misc.at:2648): ok (0m0.030s 0m0.045s)
187. Redundant periods (syn_misc.at:2672): ok (0m0.015s 0m0.091s)
188. STRING / UNSTRING with invalid syntax (syn_misc.at:2702): ok (0m0.000s 0m0.076s)
189. Use of program-prototypes (syn_misc.at:2767): ok (0m0.030s 0m0.030s)
190. Invalid INSPECT/TRANSFORM operands (syn_misc.at:2794): ok (0m0.000s 0m0.060s)
191. SIGN clause checks (syn_misc.at:2838): ok (0m0.000s 0m0.060s)
192. MOVE SPACE TO numeric or numeric-edited item (syn_move.at:37): ok (0m0.015s 0m0.060s)
193. MOVE ZERO TO alphabetic item (syn_move.at:63): ok (0m0.000s 0m0.060s)
194. MOVE alphabetic TO x (syn_move.at:89): ok (0m0.030s 0m0.045s)
195. MOVE alphanumeric TO x (syn_move.at:119): ok (0m0.015s 0m0.045s)
196. MOVE alphanumeric-edited TO x (syn_move.at:146): ok (0m0.045s 0m0.045s)
197. MOVE numeric (integer) TO x (syn_move.at:176): ok (0m0.030s 0m0.060s)
198. MOVE numeric (non-integer) TO x (syn_move.at:205): ok (0m0.000s 0m0.060s)
199. MOVE numeric-edited TO x (syn_move.at:236): ok (0m0.015s 0m0.076s)
200. CORRESPONDING - Operands must be groups (syn_move.at:271): ok (0m0.015s 0m0.045s)
201. CORRESPONDING - Target has no matching items (syn_move.at:300): ok (0m0.030s 0m0.045s)
202. MOVE: misc (syn_move.at:327): ok (0m0.000s 0m0.060s)
203. MOVE: Overlapping (syn_move.at:350): ok (0m0.045s 0m0.106s)
204. Category check of Format 1 (syn_multiply.at:28): ok (0m0.015s 0m0.075s)
205. Category check of Format 2 (syn_multiply.at:67): ok (0m0.015s 0m0.046s)
206. Category check of literals (syn_multiply.at:108): ok (0m0.000s 0m0.075s)
207. Flexible ACCEPT/DISPLAY syntax (syn_screen.at:24): ok (0m0.000s 0m0.075s)
208. Duplicate ACCEPT/DISPLAY clauses (syn_screen.at:92): ok (0m0.015s 0m0.030s)
209. AT clause (syn_screen.at:121): ok (0m0.015s 0m0.015s)
210. ACCEPT/DISPLAY extensions detection (syn_screen.at:165): ok (0m0.045s 0m0.045s)
211. FROM clause (syn_screen.at:211): ok (0m0.015s 0m0.030s)
212. SCREEN SECTION clause numbers (syn_screen.at:237): ok (0m0.000s 0m0.045s)
213. Screen clauses (syn_screen.at:265): ok (0m0.030s 0m0.045s)
214. ACCEPT ON EXCEPTION/ESCAPE (syn_screen.at:291): ok (0m0.015s 0m0.030s)
215. Referencing 88-level (syn_screen.at:321): ok (0m0.015s 0m0.061s)
216. Conflicting screen clauses (syn_screen.at:351): ok (0m0.000s 0m0.105s)
217. Redundant screen clauses (syn_screen.at:412): ok (0m0.000s 0m0.091s)
218. Screen item OCCURS w-/wo relative LINE/COL (syn_screen.at:445): ok (0m0.015s 0m0.105s)
219. VALUE clause missing (syn_screen.at:496): ok (0m0.030s 0m0.045s)
220. SET: misc (syn_set.at:24): ok (0m0.015s 0m0.076s)
221. ANY LENGTH as function RETURNING item (syn_functions.at:22): ok (0m0.015s 0m0.045s)
222. REPOSITORY INTRINSIC phrase (syn_functions.at:46): ok (0m0.030s 0m0.030s)
223. REPOSITORY FUNCTION phrase (syn_functions.at:69): ok (0m0.000s 0m0.046s)
224. Redundant REPOSITORY entries (syn_functions.at:117): ok (0m0.015s 0m0.015s)
225. Missing prototype/definition (syn_functions.at:155): ok (0m0.015s 0m0.092s)
226. Function definition inside program (syn_functions.at:186): ok (0m0.000s 0m0.060s)
227. Intrinsic functions: number of arguments (syn_functions.at:207): ok (0m0.060s 0m0.030s)
228. Intrinsic functions: reference modification (syn_functions.at:247): ok (0m0.030s 0m0.030s)
229. Intrinsic functions: Parameter type (syn_functions.at:295): ok (0m0.015s 0m0.045s)
230. invalid formatted date/time args (syn_functions.at:318): ok (0m0.000s 0m0.075s)
231. invalid formats w/ DECIMAL-POINT IS COMMA (syn_functions.at:399): ok (0m0.015s 0m0.030s)
232. Specified offset and SYSTEM-OFFSET (syn_functions.at:433): ok (0m0.030s 0m0.045s)
233. COPY within comment (listings.at:21): ok (0m0.060s 0m0.316s)
234. COPY replacement order (listings.at:103): ok (0m0.045s 0m0.347s)
235. COPY separators (listings.at:201): ok (0m0.060s 0m0.166s)
236. COPY partial replacement (listings.at:265): ok (0m0.015s 0m0.120s)
237. COPY LEADING replacement (listings.at:333): ok (0m0.060s 0m0.165s)
238. COPY TRAILING replacement (listings.at:401): ok (0m0.045s 0m0.150s)
239. COPY recursive replacement (listings.at:470): ok (0m0.060s 0m0.120s)
240. Eject page (listings.at:534): ok (0m0.165s 0m0.616s)
241. Wide listing (listings.at:766): ok (0m0.090s 0m0.270s)
242. Two source files (listings.at:856): ok (0m0.060s 0m0.195s)
243. Error/Warning messages (listings.at:930): ok (0m0.390s 0m0.977s)
244. Symbols: simple (listings.at:1224): ok (0m0.135s 0m0.453s)
245. Symbols: pointer (listings.at:1386): ok (0m0.060s 0m0.195s)
246. Symbols: mutliple programs/functions (listings.at:1669): ok (0m0.030s 0m0.166s)
247. Symbols: OCCURS/REDEFINES (listings.at:1789): ok (0m0.030s 0m0.181s)
248. Conditional compilation (listings.at:1899): ok (0m0.030s 0m0.181s)
249. LISTING ON/OFF (listings.at:1962): ok (0m0.060s 0m0.150s)
250. File descriptions (listings.at:2046): ok (0m0.060s 0m0.165s)
251. Invalid PICTURE strings (listings.at:2377): ok (0m0.090s 0m0.120s)
252. Variable format (listings.at:2646): ok (0m0.030s 0m0.135s)
253. DISPLAY literals (run_fundamental.at:23): ok (0m0.015s 0m0.075s)
254. DISPLAY literals, DECIMAL-POINT is COMMA (run_fundamental.at:85): ok (0m0.015s 0m0.136s)
255. Hexadecimal literal (run_fundamental.at:124): ok (0m0.015s 0m0.182s)
256. DISPLAY data items with VALUE clause (run_fundamental.at:167): ok (0m0.045s 0m0.045s)
257. DISPLAY data items with MOVE statement (run_fundamental.at:214): ok (0m0.045s 0m0.075s)
258. MOVE to edited item (1) (run_fundamental.at:268): ok (0m0.015s 0m0.075s)
259. MOVE to edited item (2) (run_fundamental.at:317): ok (0m0.045s 0m0.091s)
260. Move to item with simple and floating insertion (run_fundamental.at:366): ok (0m0.015s 0m0.030s)
261. MOVE to JUSTIFIED item (run_fundamental.at:396): ok (0m0.030s 0m0.060s)
262. MOVE integer literal to alphanumeric (run_fundamental.at:441): ok (0m0.045s 0m0.061s)
263. Check for equality of FLOAT-SHORT / FLOAT-LONG (run_fundamental.at:466): ok (0m0.015s 0m0.045s)
264. Overlapping MOVE (run_fundamental.at:589): ok (0m0.045s 0m0.105s)
265. ALPHABETIC test (run_fundamental.at:654): ok (0m0.015s 0m0.046s)
266. ALPHABETIC-UPPER test (run_fundamental.at:686): ok (0m0.030s 0m0.045s)
267. ALPHABETIC-LOWER test (run_fundamental.at:718): ok (0m0.031s 0m0.075s)
268. GLOBAL at same level (run_fundamental.at:750): ok (0m0.061s 0m0.060s)
269. GLOBAL at lower level (run_fundamental.at:799): ok (0m0.015s 0m0.091s)
270. GLOBAL CONSTANT (run_fundamental.at:848): ok (0m0.030s 0m0.090s)
271. Contained program visibility (1) (run_fundamental.at:933): ok (0m0.015s 0m0.045s)
272. Contained program visibility (2) (run_fundamental.at:988): ok (0m0.030s 0m0.045s)
273. Contained program visibility (3) (run_fundamental.at:1041): ok (0m0.030s 0m0.030s)
274. Contained program visibility (4) (run_fundamental.at:1092): ok (0m0.030s 0m0.060s)
275. CALL/CANCEL with program-prototype-name (run_fundamental.at:1147): ok (0m0.060s 0m0.060s)
276. START RELATIVE (1) (run_fundamental.at:1219): ok (0m0.000s 0m0.075s)
277. START RELATIVE (2) (run_fundamental.at:1268): ok (0m0.000s 0m0.045s)
278. GLOBAL FD (1) (run_fundamental.at:1345): ok (0m0.000s 0m0.045s)
279. GLOBAL FD (2) (run_fundamental.at:1395): ok (0m0.000s 0m0.046s)
280. GLOBAL FD (3) (run_fundamental.at:1445): ok (0m0.015s 0m0.045s)
281. GLOBAL FD (4) (run_fundamental.at:1495): ok (0m0.000s 0m0.030s)
282. CANCEL test (1) (run_fundamental.at:1545): ok (0m0.030s 0m0.120s)
283. CANCEL test (2) (run_fundamental.at:1572): ok (0m0.076s 0m0.151s)
284. CANCEL test (3) (run_fundamental.at:1612): ok (0m0.015s 0m0.166s)
285. Separate sign positions (1) (run_fundamental.at:1655): ok (0m0.045s 0m0.045s)
286. Separate sign positions (2) (run_fundamental.at:1679): ok (0m0.030s 0m0.075s)
287. Context sensitive words (1) (run_fundamental.at:1711): ok (0m0.030s 0m0.060s)
288. Context sensitive words (2) (run_fundamental.at:1734): ok (0m0.000s 0m0.153s)
289. Context sensitive words (3) (run_fundamental.at:1758): ok (0m0.000s 0m0.060s)
290. Context sensitive words (4) (run_fundamental.at:1782): ok (0m0.030s 0m0.076s)
291. Context sensitive words (5) (run_fundamental.at:1807): ok (0m0.030s 0m0.090s)
292. Context sensitive words (6) (run_fundamental.at:1830): ok (0m0.030s 0m0.075s)
293. Context sensitive words (7) (run_fundamental.at:1853): ok (0m0.000s 0m0.105s)
294. ROUNDED AWAY-FROM-ZERO (run_fundamental.at:1880): ok (0m0.030s 0m0.060s)
295. ROUNDED NEAREST-AWAY-FROM-ZERO (run_fundamental.at:1943): ok (0m0.046s 0m0.045s)
296. ROUNDED NEAREST-EVEN (run_fundamental.at:2006): ok (0m0.030s 0m0.060s)
297. ROUNDED NEAREST-TOWARD-ZERO (run_fundamental.at:2069): ok (0m0.045s 0m0.075s)
298. ROUNDED TOWARD-GREATER (run_fundamental.at:2132): ok (0m0.060s 0m0.045s)
299. ROUNDED TOWARD-LESSER (run_fundamental.at:2195): ok (0m0.000s 0m0.075s)
300. ROUNDED TRUNCATION (run_fundamental.at:2258): ok (0m0.030s 0m0.045s)
301. Numeric operations (1) (run_fundamental.at:2321): ok (0m0.030s 0m0.060s)
302. Numeric operations (2) (run_fundamental.at:2365): ok (0m0.030s 0m0.090s)
303. Numeric operations (3) (run_fundamental.at:2671): ok (0m0.015s 0m0.075s)
304. Numeric operations (4) (run_fundamental.at:2977): ok (0m0.030s 0m0.076s)
305. Numeric operations (5) (run_fundamental.at:3283): ok (0m0.030s 0m0.045s)
306. Numeric operations (6) (run_fundamental.at:3589): ok (0m0.030s 0m0.105s)
307. Numeric operations (7) (run_fundamental.at:3658): ok (0m0.000s 0m0.030s)
308. ADD CORRESPONDING (run_fundamental.at:3952): ok (0m0.030s 0m0.045s)
309. ADD CORRESPONDING no match (run_fundamental.at:4000): ok (0m0.000s 0m0.090s)
310. Subscript out of bounds (1) (run_subscripts.at:26): ok (0m0.015s 0m0.060s)
311. Subscript out of bounds (2) (run_subscripts.at:51): ok (0m0.015s 0m0.075s)
312. Value of DEPENDING ON N out of bounds (lower) (run_subscripts.at:76): ok (0m0.015s 0m0.045s)
313. Value of DEPENDING ON N out of bounds (upper) (run_subscripts.at:101): ok (0m0.015s 0m0.075s)
314. Subscript bounds with ODO (run_subscripts.at:126): ok (0m0.015s 0m0.105s)
315. Subscript by arithmetic expression (run_subscripts.at:151): ok (0m0.015s 0m0.030s)
316. length of ODO w/- reference modification (run_subscripts.at:182): ok (0m0.000s 0m0.075s)
317. SEARCH ALL with OCCURS DEPENDING ON (run_subscripts.at:238): ok (0m0.015s 0m0.105s)
318. Static reference modification (run_refmod.at:25): ok (0m0.030s 0m0.075s)
319. Dynamic reference modification (run_refmod.at:56): ok (0m0.000s 0m0.060s)
320. Static out of bounds (run_refmod.at:92): ok (0m0.000s 0m0.075s)
321. Offset underflow (run_refmod.at:122): ok (0m0.015s 0m0.076s)
322. Offset overflow (run_refmod.at:145): ok (0m0.030s 0m0.105s)
323. Length underflow (run_refmod.at:168): ok (0m0.030s 0m0.075s)
324. Length overflow (run_refmod.at:191): ok (0m0.015s 0m0.105s)
325. ACCEPT FROM DATE/DAY (run_accept.at:23): ok (0m0.015s 0m0.060s)
326. ACCEPT OMITTED (simple) (run_accept.at:70): ok (0m0.015s 0m0.045s)
327. ACCEPT OMITTED (SCREEN) (run_accept.at:93): skipped (run_accept.at:96)
328. INITIALIZE group entry with OCCURS (run_initialize.at:27): ok (0m0.000s 0m0.060s)
329. INITIALIZE OCCURS with numeric edited (run_initialize.at:55): ok (0m0.000s 0m0.090s)
330. INITIALIZE complex group (1) (run_initialize.at:81): ok (0m0.031s 0m0.045s)
331. INITIALIZE complex group (2) (run_initialize.at:108): ok (0m0.045s 0m0.031s)
332. INITIALIZE with REDEFINES (run_initialize.at:135): ok (0m0.031s 0m0.030s)
333. INITIALIZE with FILLER (run_initialize.at:161): ok (0m0.015s 0m0.030s)
334. INITIALIZE of EXTERNAL data items (run_initialize.at:227): ok (0m0.031s 0m0.045s)
335. INITIALIZE with reference modification (run_initialize.at:277): ok (0m0.030s 0m0.061s)
336. Comma separator without space (run_misc.at:22): ok (0m0.000s 0m0.106s)
337. LOCAL-STORAGE (1) (run_misc.at:40): ok (0m0.015s 0m0.090s)
338. LOCAL-STORAGE (2) (run_misc.at:76): ok (0m0.075s 0m0.091s)
339. EXTERNAL data item (run_misc.at:124): ok (0m0.015s 0m0.121s)
340. EXTERNAL AS data item (run_misc.at:166): ok (0m0.015s 0m0.120s)
341. MOVE to itself (run_misc.at:217): ok (0m0.030s 0m0.045s)
342. MOVE with refmod (run_misc.at:243): ok (0m0.015s 0m0.045s)
343. MOVE with refmod (variable) (run_misc.at:267): ok (0m0.000s 0m0.075s)
344. MOVE with group refmod (run_misc.at:293): ok (0m0.000s 0m0.090s)
345. MOVE indexes (run_misc.at:318): ok (0m0.031s 0m0.045s)
346. MOVE X'00' (run_misc.at:344): ok (0m0.061s 0m0.090s)
347. MOVE Z'literal' (run_misc.at:379): ok (0m0.045s 0m0.075s)
348. Floating continuation indicator (run_misc.at:421): ok (0m0.046s 0m0.060s)
349. Fixed continuation indicator (run_misc.at:443): ok (0m0.060s 0m0.060s)
350. Concatenation operator (run_misc.at:485): ok (0m0.015s 0m0.075s)
351. SOURCE FIXED/FREE directives (run_misc.at:509): ok (0m0.030s 0m0.030s)
352. Level 01 subscripts (run_misc.at:546): ok (0m0.015s 0m0.060s)
353. Class check with reference modification (run_misc.at:568): ok (0m0.015s 0m0.061s)
354. Index and parenthesized expression (run_misc.at:592): ok (0m0.046s 0m0.060s)
355. Alphanumeric and binary numeric (run_misc.at:616): ok (0m0.030s 0m0.045s)
356. Dynamic call with static linking (run_misc.at:643): ok (0m0.030s 0m0.121s)
357. CALL m1. CALL m2. CALL m1. (run_misc.at:670): ok (0m0.015s 0m0.120s)
358. Recursive CALL of RECURSIVE program (run_misc.at:725): ok (0m0.045s 0m0.180s)
359. Recursive CALL of INITIAL program (run_misc.at:777): ok (0m0.000s 0m0.150s)
360. Multiple calls of INITIAL program (run_misc.at:827): ok (0m0.030s 0m0.136s)
361. CALL binary literal parameter/LENGTH OF (run_misc.at:884): ok (0m0.015s 0m0.135s)
362. INSPECT: REPLACING LEADING ZEROS BY SPACES (run_misc.at:938): ok (0m0.000s 0m0.060s)
363. INSPECT: No repeat conversion check (run_misc.at:962): ok (0m0.015s 0m0.076s)
364. INSPECT: CONVERTING TO figurative constant (run_misc.at:986): ok (0m0.015s 0m0.045s)
365. INSPECT: CONVERTING NULL (run_misc.at:1010): ok (0m0.030s 0m0.045s)
366. INSPECT: CONVERTING TO NULL (run_misc.at:1034): ok (0m0.015s 0m0.030s)
367. INSPECT: REPLACING figurative constant (run_misc.at:1058): ok (0m0.015s 0m0.061s)
368. INSPECT: TALLYING BEFORE (run_misc.at:1082): ok (0m0.015s 0m0.045s)
369. INSPECT: TALLYING AFTER (run_misc.at:1117): ok (0m0.000s 0m0.046s)
370. INSPECT: REPLACING TRAILING ZEROS BY SPACES (run_misc.at:1152): ok (0m0.030s 0m0.046s)
371. INSPECT: REPLACING complex (run_misc.at:1176): ok (0m0.030s 0m0.015s)
372. SWITCHES (environment COB_SWITCH_n and SET) (run_misc.at:1202): ok (0m0.061s 0m0.045s)
373. Nested PERFORM (run_misc.at:1299): ok (0m0.015s 0m0.075s)
374. EXIT PERFORM (run_misc.at:1324): ok (0m0.030s 0m0.075s)
375. EXIT PERFORM CYCLE (run_misc.at:1349): ok (0m0.030s 0m0.045s)
376. EXIT PARAGRAPH (run_misc.at:1374): ok (0m0.030s 0m0.046s)
377. EXIT SECTION (run_misc.at:1406): ok (0m0.015s 0m0.061s)
378. PERFORM UNTIL EXIT (run_misc.at:1440): ok (0m0.000s 0m0.075s)
379. PERFORM inline (1) (run_misc.at:1471): ok (0m0.045s 0m0.030s)
380. PERFORM inline (2) (run_misc.at:1498): ok (0m0.015s 0m0.076s)
381. 88 with FILLER (run_misc.at:1523): ok (0m0.030s 0m0.045s)
382. Non-overflow after overflow (run_misc.at:1552): ok (0m0.015s 0m0.045s)
383. PERFORM ... CONTINUE (run_misc.at:1582): ok (0m0.000s 0m0.061s)
384. STRING with subscript reference (run_misc.at:1599): ok (0m0.045s 0m0.030s)
385. UNSTRING DELIMITED ALL LOW-VALUE (run_misc.at:1626): ok (0m0.045s 0m0.030s)
386. UNSTRING DELIMITED ALL SPACE-2 (run_misc.at:1661): ok (0m0.000s 0m0.061s)
387. UNSTRING DELIMITED POINTER (run_misc.at:1726): ok (0m0.015s 0m0.060s)
388. UNSTRING DELIMITER IN (run_misc.at:1780): ok (0m0.030s 0m0.076s)
389. SORT: table sort (run_misc.at:1822): ok (0m0.000s 0m0.076s)
390. SORT: table sort (2) (run_misc.at:1864): ok (0m0.060s 0m0.060s)
391. SORT: table sort (3) (run_misc.at:1989): skipped (run_misc.at:1990)
392. SORT: EBCDIC table sort (run_misc.at:2030): ok (0m0.030s 0m0.045s)
393. PIC ZZZ-, ZZZ+ (run_misc.at:2068): ok (0m0.030s 0m0.030s)
394. PERFORM type OSVS (run_misc.at:2121): ok (0m0.015s 0m0.045s)
395. Sticky LINKAGE (run_misc.at:2158): ok (0m0.030s 0m0.045s)
396. COB_PRE_LOAD test (run_misc.at:2205): ok (0m0.000s 0m0.135s)
397. COB_PRE_LOAD with entry points (run_misc.at:2231): ok (0m0.060s 0m0.165s)
398. Lookup ENTRY from main executable (run_misc.at:2305): ok (0m0.030s 0m0.090s)
399. COB_LOAD_CASE=UPPER test (run_misc.at:2347): ok (0m0.030s 0m0.075s)
400. 88 level with FALSE IS clause (run_misc.at:2373): ok (0m0.000s 0m0.075s)
401. ALLOCATE / FREE with BASED item (1) (run_misc.at:2401): ok (0m0.015s 0m0.060s)
402. ALLOCATE / FREE with BASED item (2) (run_misc.at:2428): ok (0m0.015s 0m0.105s)
403. ALLOCATE CHARACTERS INITIALIZED TO (run_misc.at:2475): ok (0m0.000s 0m0.061s)
404. Initialized value with defaultbyte (run_misc.at:2516): ok (0m0.015s 0m0.030s)
405. CALL with OMITTED parameter (run_misc.at:2541): ok (0m0.030s 0m0.060s)
406. CALL in from C, cob_call_params explicitly set (run_misc.at:2580): ok (0m0.015s 0m0.090s)
407. CALL in from C, cob_call_params unknown (run_misc.at:2629): ok (0m0.000s 0m0.166s)
408. CALL in from C with init missing / implicit (run_misc.at:2676): ok (0m0.030s 0m0.180s)
409. CALL STATIC C from COBOL (run_misc.at:2726): ok (0m0.030s 0m0.076s)
410. ANY LENGTH (1) (run_misc.at:2782): ok (0m0.045s 0m0.075s)
411. ANY LENGTH (2) (run_misc.at:2825): ok (0m0.015s 0m0.105s)
412. access to BASED item without allocation (run_misc.at:2869): ok (0m0.075s 0m0.136s)
413. access to OPTIONAL LINKAGE item not passed (run_misc.at:2910): ok (0m0.060s 0m0.105s)
414. STOP RUN WITH NORMAL STATUS (run_misc.at:2952): ok (0m0.030s 0m0.015s)
415. STOP RUN WITH ERROR STATUS (run_misc.at:2970): ok (0m0.045s 0m0.030s)
416. DECLARATIVES procedure referencing (run_misc.at:2988): ok (0m0.031s 0m0.045s)
417. DECLARATIVES procedure referencing (multiple) (run_misc.at:3028): ok (0m0.000s 0m0.075s)
418. SYMBOLIC clause (run_misc.at:3072): ok (0m0.045s 0m0.030s)
419. OCCURS clause with 1 entry (run_misc.at:3109): ok (0m0.015s 0m0.045s)
420. Computing of different USAGEs w/o decimal point (run_misc.at:3158): ok (0m0.015s 0m0.105s)
421. Computing of different USAGEs w/- decimal point (run_misc.at:3666): ok (0m0.075s 0m0.060s)
422. C/C++ reserved words/predefined identifiers (run_misc.at:4174): ok (0m0.030s 0m0.183s)
423. ON EXCEPTION clause of DISPLAY (run_misc.at:4634): skipped (run_misc.at:4637)
424. EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN (run_misc.at:4659): skipped (run_misc.at:4662)
425. LINE/COLUMN 0 exceptions (run_misc.at:4700): skipped (run_misc.at:4703)
426. SET LAST EXCEPTION TO OFF (run_misc.at:4738): ok (0m0.015s 0m0.061s)
427. void PROCEDURE (run_misc.at:4770): ok (0m0.061s 0m0.106s)
428. void PROCEDURE, NOTHING return (run_misc.at:4800): ok (0m0.030s 0m0.137s)
429. void PROCEDURE, main not allowed (run_misc.at:4831): ok (0m0.000s 0m0.076s)
430. void PROCEDURE not allowed for FUNCTION (run_misc.at:4849): ok (0m0.030s 0m0.030s)
431. READY TRACE / RESET TRACE (run_misc.at:4867): ok (0m0.090s 0m0.120s)
432. CALL with program prototypes (run_misc.at:4995): ok (0m0.015s 0m0.060s)
433. PICTURE with constant-name (run_misc.at:5051): ok (0m0.030s 0m0.030s)
434. Quote marks in comment paragraphs (run_misc.at:5076): ok (0m0.045s 0m0.121s)
435. MOVE with -fbinary-truncate (run_misc.at:5101): ok (0m0.091s 0m0.090s)
436. READ INTO AT-END sequence (run_file.at:21): ok (0m0.015s 0m0.060s)
437. First READ on empty SEQUENTIAL INDEXED file (run_file.at:58): ok (0m0.015s 0m0.060s)
438. REWRITE a RELATIVE file with RANDOM access (run_file.at:98): ok (0m0.015s 0m0.045s)
439. SORT with SD, I/O SEQUENTIAL (run_file.at:165): ok (0m0.030s 0m0.090s)
440. SORT with SD, I/O LINE SEQUENTIAL (run_file.at:213): ok (0m0.060s 0m0.076s)
441. SORT with SD, I/O LINE SEQUENTIAL same file (run_file.at:270): ok (0m0.030s 0m0.106s)
442. SORT nonexistent file (run_file.at:327): ok (0m0.015s 0m0.045s)
443. ASSIGN with LOCAL-STORAGE item (run_file.at:362): ok (0m0.000s 0m0.105s)
444. ASSIGN with LOCAL-STORAGE item and INITIAL prog (run_file.at:398): ok (0m0.045s 0m0.045s)
445. RETURN-CODE moving (run_returncode.at:23): ok (0m0.030s 0m0.045s)
446. RETURN-CODE passing (run_returncode.at:49): ok (0m0.015s 0m0.150s)
447. RETURN-CODE nested (run_returncode.at:101): ok (0m0.015s 0m0.061s)
448. FUNCTION ABS (run_functions.at:24): ok (0m0.031s 0m0.030s)
449. FUNCTION ACOS (run_functions.at:46): ok (0m0.015s 0m0.030s)
450. FUNCTION ANNUITY (run_functions.at:70): ok (0m0.045s 0m0.030s)
451. FUNCTION ASIN (run_functions.at:94): ok (0m0.000s 0m0.045s)
452. FUNCTION ATAN (run_functions.at:118): ok (0m0.015s 0m0.045s)
453. FUNCTION BYTE-LENGTH (run_functions.at:142): ok (0m0.031s 0m0.091s)
454. FUNCTION CHAR (run_functions.at:177): ok (0m0.015s 0m0.060s)
455. FUNCTION COMBINED-DATETIME (run_functions.at:215): ok (0m0.000s 0m0.075s)
456. FUNCTION CONCATENATE (run_functions.at:240): ok (0m0.015s 0m0.061s)
457. FUNCTION CONCATENATE with reference modding (run_functions.at:279): ok (0m0.015s 0m0.045s)
458. FUNCTION COS (run_functions.at:307): ok (0m0.030s 0m0.045s)
459. FUNCTION CURRENCY-SYMBOL (run_functions.at:331): ok (0m0.045s 0m0.030s)
460. FUNCTION CURRENT-DATE (run_functions.at:354): ok (0m0.030s 0m0.061s)
461. FUNCTION DATE-OF-INTEGER (run_functions.at:425): ok (0m0.030s 0m0.045s)
462. FUNCTION DATE-TO-YYYYMMDD (run_functions.at:450): ok (0m0.000s 0m0.045s)
463. FUNCTION DAY-OF-INTEGER (run_functions.at:475): ok (0m0.031s 0m0.046s)
464. FUNCTION DAY-TO-YYYYDDD (run_functions.at:500): ok (0m0.000s 0m0.106s)
465. FUNCTION E (run_functions.at:525): ok (0m0.000s 0m0.046s)
466. FUNCTION EXCEPTION-FILE (run_functions.at:549): ok (0m0.061s 0m0.046s)
467. FUNCTION EXCEPTION-LOCATION (run_functions.at:581): ok (0m0.015s 0m0.090s)
468. FUNCTION EXCEPTION-STATEMENT (run_functions.at:617): ok (0m0.030s 0m0.045s)
469. FUNCTION EXCEPTION-STATUS (run_functions.at:649): ok (0m0.030s 0m0.060s)
470. FUNCTION EXP (run_functions.at:681): ok (0m0.015s 0m0.060s)
471. FUNCTION EXP10 (run_functions.at:705): ok (0m0.030s 0m0.030s)
472. FUNCTION FACTORIAL (run_functions.at:730): ok (0m0.030s 0m0.045s)
473. FUNCTION FORMATTED-CURRENT-DATE (run_functions.at:755): ok (0m0.015s 0m0.046s)
474. FUNCTION FORMATTED-DATE (run_functions.at:783): ok (0m0.015s 0m0.061s)
475. FUNCTION FORMATTED-DATE with ref modding (run_functions.at:846): ok (0m0.015s 0m0.060s)
476. FUNCTION FORMATTED-DATETIME (run_functions.at:871): ok (0m0.015s 0m0.060s)
477. FUNCTION FORMATTED-DATETIME with ref modding (run_functions.at:928): ok (0m0.015s 0m0.046s)
478. FUNCTION FORMATTED-TIME (run_functions.at:954): ok (0m0.030s 0m0.060s)
479. FUNCTION FORMATTED-TIME DP.COMMA (run_functions.at:1041): ok (0m0.015s 0m0.075s)
480. FUNCTION FORMATTED-TIME with ref modding (run_functions.at:1072): ok (0m0.000s 0m0.076s)
481. FUNCTION FRACTION-PART (run_functions.at:1097): ok (0m0.000s 0m0.076s)
482. FUNCTION HIGHEST-ALGEBRAIC (run_functions.at:1128): ok (0m0.015s 0m0.075s)
483. FUNCTION INTEGER (run_functions.at:1196): ok (0m0.030s 0m0.061s)
484. FUNCTION INTEGER-OF-DATE (run_functions.at:1229): ok (0m0.030s 0m0.061s)
485. FUNCTION INTEGER-OF-DAY (run_functions.at:1254): ok (0m0.031s 0m0.060s)
486. FUNCTION INTEGER-OF-FORMATTED-DATE (run_functions.at:1279): ok (0m0.031s 0m0.045s)
487. FUNCTION INTEGER-PART (run_functions.at:1329): ok (0m0.046s 0m0.031s)
488. FUNCTION LENGTH (run_functions.at:1355): ok (0m0.015s 0m0.060s)
489. FUNCTION LOCALE-COMPARE (run_functions.at:1381): ok (0m0.015s 0m0.060s)
490. FUNCTION LOCALE-DATE (run_functions.at:1411): ok (0m0.015s 0m0.060s)
491. FUNCTION LOCALE-TIME (run_functions.at:1437): ok (0m0.015s 0m0.105s)
492. FUNCTION LOCALE-TIME-FROM-SECONDS (run_functions.at:1463): ok (0m0.045s 0m0.060s)
493. FUNCTION LOG (run_functions.at:1489): ok (0m0.000s 0m0.060s)
494. FUNCTION LOG10 (run_functions.at:1513): ok (0m0.015s 0m0.046s)
495. FUNCTION LOWER-CASE (run_functions.at:1537): ok (0m0.000s 0m0.076s)
496. FUNCTION LOWER-CASE with reference modding (run_functions.at:1565): ok (0m0.000s 0m0.076s)
497. FUNCTION LOWEST-ALGEBRAIC (run_functions.at:1591): ok (0m0.060s 0m0.015s)
498. FUNCTION MAX (run_functions.at:1644): ok (0m0.046s 0m0.060s)
499. FUNCTION MEAN (run_functions.at:1666): ok (0m0.030s 0m0.075s)
500. FUNCTION MEDIAN (run_functions.at:1688): ok (0m0.030s 0m0.090s)
501. FUNCTION MIDRANGE (run_functions.at:1710): ok (0m0.030s 0m0.075s)
502. FUNCTION MIN (run_functions.at:1732): ok (0m0.030s 0m0.076s)
503. FUNCTION MOD (run_functions.at:1754): ok (0m0.015s 0m0.105s)
504. FUNCTION MODULE-CALLER-ID (run_functions.at:1780): ok (0m0.045s 0m0.090s)
505. FUNCTION MODULE-DATE (run_functions.at:1814): ok (0m0.000s 0m0.075s)
506. FUNCTION MODULE-FORMATTED-DATE (run_functions.at:1839): ok (0m0.076s 0m0.030s)
507. FUNCTION MODULE-ID (run_functions.at:1864): ok (0m0.015s 0m0.075s)
508. FUNCTION MODULE-PATH (run_functions.at:1885): ok (0m0.030s 0m0.060s)
509. FUNCTION MODULE-SOURCE (run_functions.at:1910): ok (0m0.030s 0m0.075s)
510. FUNCTION MODULE-TIME (run_functions.at:1931): ok (0m0.000s 0m0.120s)
511. FUNCTION MONETARY-DECIMAL-POINT (run_functions.at:1956): ok (0m0.045s 0m0.075s)
512. FUNCTION MONETARY-THOUSANDS-SEPARATOR (run_functions.at:1979): ok (0m0.030s 0m0.075s)
513. FUNCTION NUMERIC-DECIMAL-POINT (run_functions.at:2002): ok (0m0.030s 0m0.046s)
514. FUNCTION NUMERIC-THOUSANDS-SEPARATOR (run_functions.at:2025): ok (0m0.000s 0m0.075s)
515. FUNCTION NUMVAL (run_functions.at:2048): ok (0m0.015s 0m0.060s)
516. FUNCTION NUMVAL-C (run_functions.at:2079): ok (0m0.045s 0m0.045s)
517. FUNCTION NUMVAL-C DP.COMMA (run_functions.at:2110): ok (0m0.015s 0m0.061s)
518. FUNCTION NUMVAL-F (run_functions.at:2140): ok (0m0.045s 0m0.060s)
519. FUNCTION ORD (run_functions.at:2163): ok (0m0.030s 0m0.075s)
520. FUNCTION ORD-MAX (run_functions.at:2185): ok (0m0.030s 0m0.076s)
521. FUNCTION ORD-MIN (run_functions.at:2207): ok (0m0.060s 0m0.075s)
522. FUNCTION PI (run_functions.at:2229): ok (0m0.015s 0m0.060s)
523. FUNCTION PRESENT-VALUE (run_functions.at:2253): ok (0m0.015s 0m0.075s)
524. FUNCTION RANDOM (run_functions.at:2275): ok (0m0.015s 0m0.061s)
525. FUNCTION RANGE (run_functions.at:2299): ok (0m0.031s 0m0.030s)
526. FUNCTION REM (run_functions.at:2323): ok (0m0.061s 0m0.030s)
527. FUNCTION REVERSE (run_functions.at:2347): ok (0m0.015s 0m0.060s)
528. FUNCTION REVERSE with reference modding (run_functions.at:2372): ok (0m0.000s 0m0.061s)
529. FUNCTION SECONDS-FROM-FORMATTED-TIME (run_functions.at:2397): ok (0m0.030s 0m0.060s)
530. FUNCTION SECONDS-PAST-MIDNIGHT (run_functions.at:2464): ok (0m0.030s 0m0.030s)
531. FUNCTION SIGN (run_functions.at:2488): ok (0m0.031s 0m0.045s)
532. FUNCTION SIN (run_functions.at:2527): ok (0m0.000s 0m0.060s)
533. FUNCTION SQRT (run_functions.at:2551): ok (0m0.015s 0m0.060s)
534. FUNCTION STANDARD-DEVIATION (run_functions.at:2575): ok (0m0.015s 0m0.060s)
535. FUNCTION STORED-CHAR-LENGTH (run_functions.at:2599): ok (0m0.000s 0m0.060s)
536. FUNCTION SUBSTITUTE (run_functions.at:2625): ok (0m0.015s 0m0.045s)
537. FUNCTION SUBSTITUTE with reference modding (run_functions.at:2654): ok (0m0.030s 0m0.060s)
538. FUNCTION SUBSTITUTE-CASE (run_functions.at:2682): ok (0m0.015s 0m0.045s)
539. FUNCTION SUBSTITUTE-CASE with reference mod (run_functions.at:2709): ok (0m0.000s 0m0.045s)
540. FUNCTION SUM (run_functions.at:2737): ok (0m0.030s 0m0.045s)
541. FUNCTION TAN (run_functions.at:2761): ok (0m0.015s 0m0.060s)
542. FUNCTION TEST-DATE-YYYYMMDD (run_functions.at:2785): ok (0m0.030s 0m0.075s)
543. FUNCTION TEST-DAY-YYYYDDD (run_functions.at:2807): ok (0m0.015s 0m0.075s)
544. FUNCTION TEST-FORMATTED-DATETIME with dates (run_functions.at:2829): ok (0m0.030s 0m0.030s)
545. FUNCTION TEST-FORMATTED-DATETIME with times (run_functions.at:2956): ok (0m0.015s 0m0.060s)
546. FUNCTION TEST-FORMATTED-DATETIME with datetimes (run_functions.at:3037): ok (0m0.015s 0m0.046s)
547. FUNCTION TEST-FORMATTED-DATETIME DP.COMMA (run_functions.at:3084): ok (0m0.000s 0m0.061s)
548. FUNCTION TEST-NUMVAL (run_functions.at:3125): ok (0m0.015s 0m0.060s)
549. FUNCTION TEST-NUMVAL-C (run_functions.at:3223): ok (0m0.000s 0m0.060s)
550. FUNCTION TEST-NUMVAL-F (run_functions.at:3321): ok (0m0.015s 0m0.045s)
551. FUNCTION TRIM (run_functions.at:3419): ok (0m0.045s 0m0.060s)
552. FUNCTION TRIM with reference modding (run_functions.at:3445): ok (0m0.015s 0m0.090s)
553. FUNCTION TRIM zero length (run_functions.at:3471): ok (0m0.030s 0m0.030s)
554. FUNCTION UPPER-CASE (run_functions.at:3498): ok (0m0.015s 0m0.075s)
555. FUNCTION UPPER-CASE with reference modding (run_functions.at:3523): ok (0m0.015s 0m0.045s)
556. FUNCTION VARIANCE (run_functions.at:3548): ok (0m0.015s 0m0.030s)
557. FUNCTION WHEN-COMPILED (run_functions.at:3572): ok (0m0.015s 0m0.061s)
558. FUNCTION YEAR-TO-YYYY (run_functions.at:3598): ok (0m0.015s 0m0.060s)
560. FORMATTED-(DATE)TIME with SYSTEM-OFFSET (run_functions.at:3724): ok (0m0.015s 0m0.030s)
561. Intrinsics without FUNCTION keyword (1) (run_functions.at:3764): ok (0m0.015s 0m0.075s)
562. Intrinsics without FUNCTION keyword (2) (run_functions.at:3785): ok (0m0.000s 0m0.061s)
563. User-Defined FUNCTION with/without parameter (run_functions.at:3808): ok (0m0.000s 0m0.076s)
564. CALL BY CONTENT binary and literal (run_extensions.at:24): ok (0m0.030s 0m0.106s)
565. Numeric Boolean literal (run_extensions.at:72): ok (0m0.030s 0m0.060s)
566. ACUCOBOL literal (run_extensions.at:102): ok (0m0.000s 0m0.090s)
567. Hexadecimal numeric literal (run_extensions.at:129): ok (0m0.000s 0m0.105s)
568. Semi-parenthesized condition (run_extensions.at:157): ok (0m0.015s 0m0.045s)
569. ADDRESS OF (run_extensions.at:177): ok (0m0.015s 0m0.045s)
570. LENGTH OF (run_extensions.at:227): ok (0m0.015s 0m0.045s)
571. WHEN-COMPILED (run_extensions.at:296): ok (0m0.031s 0m0.060s)
572. Complex OCCURS DEPENDING ON (1) (run_extensions.at:322): ok (0m0.015s 0m0.075s)
573. Complex OCCURS DEPENDING ON (2) (run_extensions.at:351): ok (0m0.000s 0m0.075s)
574. Complex OCCURS DEPENDING ON (3) (run_extensions.at:414): ok (0m0.045s 0m0.045s)
575. Complex OCCURS DEPENDING ON (4) (run_extensions.at:477): ok (0m0.015s 0m0.060s)
576. Complex OCCURS DEPENDING ON (5) (run_extensions.at:543): ok (0m0.000s 0m0.060s)
577. Complex OCCURS DEPENDING ON (6) (run_extensions.at:610): ok (0m0.015s 0m0.061s)
578. Complex OCCURS DEPENDING ON (7) (run_extensions.at:650): ok (0m0.015s 0m0.030s)
579. INITIALIZE level 01 (run_extensions.at:692): ok (0m0.015s 0m0.045s)
580. MOVE of non-integer to alphanumeric (run_extensions.at:744): ok (0m0.000s 0m0.090s)
581. CALL USING file-name (run_extensions.at:834): ok (0m0.060s 0m0.075s)
582. CALL unusual PROGRAM-ID. (run_extensions.at:878): ok (0m0.045s 0m0.241s)
583. CALL / GOBACK with LOCAL-STORAGE (run_extensions.at:942): ok (0m0.030s 0m0.060s)
585. Case-sensitive PROGRAM-ID (run_extensions.at:1029): ok (0m0.000s 0m0.030s)
586. PROGRAM-ID AS clause (run_extensions.at:1051): ok (0m0.000s 0m0.075s)
587. Quoted PROGRAM-ID (run_extensions.at:1073): ok (0m0.015s 0m0.045s)
588. ASSIGN clause (run_extensions.at:1097): ok (0m0.000s 0m0.076s)
589. ASSIGN clause IBM (run_extensions.at:1125): ok (0m0.030s 0m0.075s)
590. ASSIGN mapping (run_extensions.at:1153): ok (0m0.045s 0m0.181s)
591. ASSIGN expansion (run_extensions.at:1208): ok (0m0.030s 0m0.107s)
592. ASSIGN with COB_FILE_PATH (run_extensions.at:1234): ok (0m0.015s 0m0.091s)
593. NUMBER-OF-CALL-PARAMETERS (run_extensions.at:1262): ok (0m0.060s 0m0.075s)
594. TALLY (run_extensions.at:1318): ok (0m0.015s 0m0.060s)
596. PROCEDURE DIVISION CHAINING ... (run_extensions.at:1398): ok (0m0.015s 0m0.030s)
597. STOP RUN RETURNING/GIVING (run_extensions.at:1424): ok (0m0.105s 0m0.181s)
598. GOBACK/EXIT PROGRAM RETURNING/GIVING (run_extensions.at:1482): ok (0m0.030s 0m0.060s)
599. ENTRY (run_extensions.at:1532): ok (0m0.045s 0m0.090s)
600. LINE SEQUENTIAL write (run_extensions.at:1577): ok (0m0.000s 0m0.135s)
601. LINE SEQUENTIAL read (run_extensions.at:1623): ok (0m0.015s 0m0.075s)
602. ASSIGN to KEYBOARD/DISPLAY (run_extensions.at:1690): ok (0m0.046s 0m0.075s)
604. Environment/Argument variable (run_extensions.at:1810): ok (0m0.015s 0m0.105s)
605. DECIMAL-POINT is COMMA (1) (run_extensions.at:1857): ok (0m0.015s 0m0.107s)
606. DECIMAL-POINT is COMMA (2) (run_extensions.at:1885): ok (0m0.015s 0m0.060s)
607. DECIMAL-POINT is COMMA (3) (run_extensions.at:1913): ok (0m0.015s 0m0.091s)
608. DECIMAL-POINT is COMMA (4) (run_extensions.at:1941): ok (0m0.030s 0m0.060s)
609. DECIMAL-POINT is COMMA (5) (run_extensions.at:1969): ok (0m0.015s 0m0.060s)
610. 78 Level (1) (run_extensions.at:2003): ok (0m0.076s 0m0.030s)
611. 78 Level (2) (run_extensions.at:2026): ok (0m0.045s 0m0.060s)
612. 78 Level (3) (run_extensions.at:2052): ok (0m0.015s 0m0.045s)
613. DEBUG (not active) (run_extensions.at:2076): ok (0m0.015s 0m0.075s)
614. DEBUG (fdebugging-line) (run_extensions.at:2099): ok (0m0.060s 0m0.045s)
615. DEBUG (obsolete WITH DEBUGGING MODE) (run_extensions.at:2122): ok (0m0.015s 0m0.076s)
616. DEBUG free format (not active) (run_extensions.at:2148): ok (0m0.045s 0m0.075s)
617. DEBUG free format (fdebugging-line) (run_extensions.at:2171): ok (0m0.015s 0m0.075s)
618. SWITCHES with non-standard names (run_extensions.at:2194): ok (0m0.015s 0m0.075s)
619. Larger REDEFINES lengths (run_extensions.at:2295): ok (0m0.000s 0m0.120s)
620. Obsolete 85 keywords (run_extensions.at:2380): ok (0m0.030s 0m0.075s)
621. System routine C$CALLEDBY (run_extensions.at:2406): ok (0m0.015s 0m0.136s)
622. System routine C$NARG (run_extensions.at:2452): ok (0m0.045s 0m0.075s)
623. System routine C$PARAMSIZE (run_extensions.at:2492): ok (0m0.076s 0m0.075s)
624. System routine C$JUSTIFY (run_extensions.at:2534): ok (0m0.045s 0m0.045s)
625. System routine C$PRINTABLE (run_extensions.at:2559): ok (0m0.000s 0m0.076s)
626. System routine C$MAKEDIR (run_extensions.at:2588): ok (0m0.015s 0m0.060s)
627. System routine C$GETPID (run_extensions.at:2609): ok (0m0.030s 0m0.015s)
628. System routine C$TOUPPER (run_extensions.at:2634): ok (0m0.015s 0m0.075s)
629. System routine C$TOLOWER (run_extensions.at:2659): ok (0m0.030s 0m0.030s)
630. System routine CBL_OR (run_extensions.at:2684): ok (0m0.030s 0m0.060s)
631. System routine CBL_NOR (run_extensions.at:2711): ok (0m0.015s 0m0.046s)
632. System routine CBL_AND (run_extensions.at:2738): ok (0m0.030s 0m0.060s)
633. System routine CBL_XOR (run_extensions.at:2765): ok (0m0.015s 0m0.060s)
634. System routine CBL_IMP (run_extensions.at:2792): ok (0m0.030s 0m0.075s)
635. System routine CBL_NIMP (run_extensions.at:2819): ok (0m0.015s 0m0.045s)
636. System routine CBL_NOT (run_extensions.at:2846): ok (0m0.031s 0m0.030s)
637. System routine CBL_EQ (run_extensions.at:2872): ok (0m0.060s 0m0.015s)
638. System routine CBL_OC_GETOPT (run_extensions.at:2899): ok (0m0.136s 0m0.256s)
639. System routine CBL_COPY_FILE (run_extensions.at:3336): ok (0m0.015s 0m0.121s)
640. System routine CBL_OC_HOSTED (run_extensions.at:3370): ok (0m0.045s 0m0.166s)
641. System routines for directories (run_extensions.at:3491): ok (0m0.060s 0m0.030s)
642. System routines for files (run_extensions.at:3532): ok (0m0.000s 0m0.136s)
643. Conditional/define directives (1) (run_extensions.at:3646): ok (0m0.030s 0m0.105s)
644. Conditional/define directives (2) (run_extensions.at:3670): ok (0m0.015s 0m0.091s)
645. Conditional/define directives (3) (run_extensions.at:3695): ok (0m0.046s 0m0.045s)
646. Conditional/define directives (4) (run_extensions.at:3723): ok (0m0.015s 0m0.061s)
647. Conditional/define directives (5) (run_extensions.at:3749): ok (0m0.000s 0m0.030s)
648. Conditional/define directives (6) (run_extensions.at:3773): ok (0m0.030s 0m0.105s)
649. Conditional/define directives (7) (run_extensions.at:3797): ok (0m0.000s 0m0.030s)
650. Variable format (run_extensions.at:3817): ok (0m0.030s 0m0.060s)
651. BINARY: 2-4-8 big-endian (data_binary.at:23): ok (0m0.045s 0m0.165s)
652. BINARY: 2-4-8 native (data_binary.at:205): ok (0m0.122s 0m0.150s)
653. BINARY: 1-2-4-8 big-endian (data_binary.at:393): ok (0m0.030s 0m0.225s)
654. BINARY: 1-2-4-8 native (data_binary.at:575): ok (0m0.106s 0m0.196s)
655. BINARY: 1--8 big-endian (data_binary.at:763): ok (0m0.045s 0m0.180s)
656. BINARY: 1--8 native (data_binary.at:945): ok (0m0.060s 0m0.165s)
657. BINARY: full-print (data_binary.at:1133): ok (0m0.045s 0m0.045s)
658. BINARY: 64bit unsigned compare (data_binary.at:1185): ok (0m0.015s 0m0.060s)
659. BINARY: 64bit unsigned arthimetic notrunc (data_binary.at:1210): ok (0m0.015s 0m0.075s)
660. BINARY: 64bit signed negative constant range (data_binary.at:1239): ok (0m0.015s 0m0.060s)
661. DISPLAY: Sign ASCII (data_display.at:21): ok (0m0.015s 0m0.091s)
662. DISPLAY: Sign ASCII (2) (data_display.at:80): ok (0m0.030s 0m0.075s)
663. DISPLAY: Sign EBCDIC (data_display.at:126): ok (0m0.015s 0m0.090s)
664. DISPLAY: unsigned (data_display.at:171): ok (0m0.000s 0m0.105s)
665. PACKED-DECIMAL dump (data_packed.at:25): ok (0m0.000s 0m0.135s)
666. PACKED-DECIMAL display (data_packed.at:162): ok (0m0.030s 0m0.076s)
667. PACKED-DECIMAL move (data_packed.at:218): ok (0m0.061s 0m0.076s)
668. PACKED-DECIMAL arithmetic (1) (data_packed.at:276): ok (0m0.045s 0m0.046s)
669. PACKED-DECIMAL arithmetic (2) (data_packed.at:316): ok (0m0.000s 0m0.090s)
670. PACKED-DECIMAL numeric test (1) (data_packed.at:353): ok (0m0.061s 0m0.015s)
671. PACKED-DECIMAL numeric test (2) (data_packed.at:494): ok (0m0.030s 0m0.075s)
672. COMP-6 display (data_packed.at:607): ok (0m0.045s 0m0.030s)
673. COMP-6 move (data_packed.at:643): ok (0m0.060s 0m0.030s)
674. COMP-6 arithmetic (data_packed.at:689): ok (0m0.030s 0m0.060s)
675. COMP-6 numeric test (data_packed.at:720): ok (0m0.015s 0m0.090s)
676. POINTER: display (data_pointer.at:21): ok (0m0.092s 0m0.150s)
testsuite: ending at: Sun Nov 13 01:39:02 CST 2016
testsuite: test suite duration: 0h 7m 1s
## ------------- ##
## Test results. ##
## ------------- ##
ERROR: 671 tests were run,
4 failed (3 expected failures).
5 tests were skipped.
## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
GnuCOBOL 2.0 test suite: GnuCOBOL Tests test groups:
NUM: FILE-NAME:LINE TEST-GROUP-NAME
KEYWORDS
559: run_functions.at:3622 Formatted funcs w/ invalid variable format
functions
Skipped tests:
GnuCOBOL 2.0 test suite: GnuCOBOL Tests test groups:
NUM: FILE-NAME:LINE TEST-GROUP-NAME
KEYWORDS
327: run_accept.at:93 ACCEPT OMITTED (SCREEN)
accept extensions
391: run_misc.at:1989 SORT: table sort (3)
runmisc
423: run_misc.at:4634 ON EXCEPTION clause of DISPLAY
runmisc exceptions screen
424: run_misc.at:4659 EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN
runmisc exceptions screen
425: run_misc.at:4700 LINE/COLUMN 0 exceptions
line column runmisc exceptions extensions screen
## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##
# -*- compilation -*-
559. run_functions.at:3622: testing Formatted funcs w/ invalid variable format ...
./run_functions.at:3685: echo "$COB_HAS_UTC_OFFSET"
--- - 2016-11-13 01:37:25 -0600
+++ /mingw/MSYS/gnu-cobol-2.0/tests/testsuite.dir/at-groups/559/stdout 2016-11-13 01:37:26 -0600
@@ -1,2 +1,2 @@
-no
+yes
./run_functions.at:3690: $COMPILE prog.cob
--- - 2016-11-13 01:37:26 -0600
+++ /mingw/MSYS/gnu-cobol-2.0/tests/testsuite.dir/at-groups/559/stderr 2016-11-13 01:37:26 -0600
@@ -1,4 +1,5 @@
prog.cob: 11: warning: FUNCTION 'FORMATTED-CURRENT-DATE' has format in variable
+prog.cob: 11: warning: cannot find the UTC offset on this system
prog.cob: 18: warning: FUNCTION 'FORMATTED-DATE' has format in variable
prog.cob: 24: warning: FUNCTION 'FORMATTED-DATETIME' has format in variable
prog.cob: 31: warning: FUNCTION 'FORMATTED-TIME' has format in variable
559. run_functions.at:3622: 559. Formatted funcs w/ invalid variable format (run_functions.at:3622): FAILED (run_functions.at:3690)
## ------------- ##
## ../config.log ##
## ------------- ##
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
|
| It was created by GnuCOBOL configure 2.0, which was
| generated by GNU Autoconf 2.69. Invocation command line was
|
| $ ./configure --prefix=/mingw -disable-rpath
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = Arnold-THINK-PC
| uname -m = i686
| uname -r = 1.0.19(0.48/3/2)
| uname -s = MINGW32_NT-6.1
| uname -v = 2016-07-13 17:45
|
| /usr/bin/uname -p = unknown
| /bin/uname -X = unknown
|
| /bin/arch = unknown
| /usr/bin/arch -k = unknown
| /usr/convex/getsysinfo = unknown
| /usr/bin/hostinfo = unknown
| /bin/machine = unknown
| /usr/bin/oslevel = unknown
| /bin/universe = unknown
|
| PATH: .
| PATH: /usr/local/bin
| PATH: /mingw/bin
| PATH: /bin
| PATH: /c/ProgramData/Oracle/Java/javapath
| PATH: /c/Program Files/Common Files/Microsoft Shared/Windows Live
| PATH: /c/Program Files (x86)/Common Files/Microsoft Shared/Windows Live
| PATH: /c/Windows/system32
| PATH: /c/Windows
| PATH: /c/Windows/System32/Wbem
| PATH: /c/Windows/System32/WindowsPowerShell/v1.0/
| PATH: /c/Program Files/Intel/DMIX
| PATH: /c/Program Files (x86)/Common Files/Ulead Systems/MPEG
| PATH: /c/Program Files/Common Files/Lenovo
| PATH: /c/bat
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:2436: checking for a BSD-compatible install
| configure:2504: result: /bin/install -c
| configure:2515: checking whether build environment is sane
| configure:2570: result: yes
| configure:2721: checking for a thread-safe mkdir -p
| configure:2760: result: /bin/mkdir -p
| configure:2767: checking for gawk
| configure:2783: found /bin/gawk
| configure:2794: result: gawk
| configure:2805: checking whether make sets $(MAKE)
| configure:2827: result: yes
| configure:2856: checking whether make supports nested variables
| configure:2873: result: yes
| configure:3000: checking whether to enable maintainer-specific portions of Makefiles
| configure:3009: result: no
| configure:3212: checking for gcc
| configure:3228: found /mingw/bin/gcc
| configure:3239: result: gcc
| configure:3270: checking for C compiler version
| configure:3279: gcc --version >&5
| gcc.exe (GCC) 5.3.0
| Copyright (C) 2015 Free Software Foundation, Inc.
| This is free software; see the source for copying conditions. There is NO
| warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
| configure:3290: $? = 0
| configure:3279: gcc -v >&5
| Using built-in specs.
| COLLECT_GCC=C:\GC20-Build\MinGW\bin\gcc.exe
| COLLECT_LTO_WRAPPER=c:/gc20-build/mingw/bin/../libexec/gcc/mingw32/5.3.0/lto-wrapper.exe
| Target: mingw32