forked from joelivey/M-Unit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
20170704_GT.M_INSTALL_1.5.0.txt
2205 lines (1662 loc) · 87.8 KB
/
20170704_GT.M_INSTALL_1.5.0.txt
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
The following capture shows the installation of M-Unit (MASH*1.5*0) on a GT.M
system (version 6.2) running VistA. Following installation, the unit tests for
the package and coverage analysis were performed twice. In GT.M when a routine
is first run, any apparent problems are identified and listed as the routine is
running. These are the result of sections of code for Intersystems Cache being
present which is not attempted to be run in a GT.M system. The second capture
which does not include this excess material is presented here.
The commands used are:
D ^XUP - used to perform the installation
D ^%utt1 - this runs the unit tests showing periods for each passing test
D EN^%ut("%utt1",3) - runs unit tests with VERBOSITY set to 3, this
causes each test to be listed with its result and at level
3 it lists execution time for each test in fractional
milliseconds
D ^%uttcovr - runs detailed coverage analysis for the unit test routines
with level set to 3, which lists coverage by routine,
coverage by tag within routines, and within each routine lists
by tag lines that were NOT covered
The example showing unit tests with a specification of verbosity set to 3, which
normally shows execution times in fractions of a millisecond, shows only
milliseconds since this capture was run in version 6.2 of GTM which does not
support the fractional milliseconds. [Problems were encountered in attempting to
load VistA into the instance of GT.M with V6.3-000, the fractional milliseconds
is shown in the MASH*1.5*0 GT.M installation without VistA.]
Script started on Tue 04 Jul 2017 10:18:47 PM EDT
[softhat@softhat-VirtualBox jli]$ ls
MASH_1.5_0.KID
[softhat@softhat-VirtualBox jli]$ dos2unix MASH_1.5_0.KID
dos2unix: converting file MASH_1.5_0.KID to Unix format ...
[softhat@softhat-VirtualBox jli]$ mumps -dir
GTM>S DUZ=1 D Q^DI,^%ZIS
VA FILEMAN 22.2V2
Select OPTION:
DEVICE: HOME// TELNET
GTM>D ^XUP
Setting up programmer environment
This is a TEST account.
Terminal Type set to: C-VT220
Select OPTION NAME: EVE
1 EVE Systems Manager Menu
2 EVENT CAPTURE ECX ECS MAINTENANCE Event Capture
3 EVENT CAPTURE (ECS) EXTRACT AU ECX ECS SOURCE AUDIT Event Capture
(ECS) Extract Audit
4 EVENT CAPTURE DATA ENTRY ECENTER Event Capture Data Entry
5 EVENT CAPTURE EXTRACT ECXEC Event Capture Extract
Press <Enter> to see more, '^' to exit this list, OR
CHOOSE 1-5: 1 EVE Systems Manager Menu
WARNING -- TASK MANAGER DOESN'T SEEM TO BE RUNNING!!!!
Core Applications ...
Device Management ...
Menu Management ...
Programmer Options ...
Operations Management ...
Spool Management ...
Information Security Officer Menu ...
Taskman Management ...
User Management ...
Application Utilities ...
Capacity Planning ...
HL7 Main Menu ...
You have PENDING ALERTS
Enter "VA to jump to VIEW ALERTS option
Select Systems Manager Menu <TEST ACCOUNT> Option: PROGrammer Options
KIDS Kernel Installation & Distribution System ...
PG Programmer mode
Delete Unreferenced Options
Error Processing ...
Global Block Count
Routine Tools ...
You have PENDING ALERTS
Enter "VA to jump to VIEW ALERTS option
Select Programmer Options <TEST ACCOUNT> Option: KIDS Kernel Installation & Dis
tribution System
Edits and Distribution ...
Utilities ...
Installation ...
Patch Monitor Main Menu ...
You have PENDING ALERTS
Enter "VA to jump to VIEW ALERTS option
Select Kernel Installation & Distribution System <TEST ACCOUNT> Option: INSTalla
tion
1 Load a Distribution
2 Verify Checksums in Transport Global
3 Print Transport Global
4 Compare Transport Global to Current System
5 Backup a Transport Global
6 Install Package(s)
Restart Install of Package(s)
Unload a Distribution
You have PENDING ALERTS
Enter "VA to jump to VIEW ALERTS option
Select Installation <TEST ACCOUNT> Option: LOAd a Distribution
Enter a Host File: /home/softhat/jli/MASH_1.5_0.KID
KIDS Distribution saved on Jul 04, 2017@12:57:48
Comment: Updated version of M-Unit functionality
This Distribution contains Transport Globals for the following Package(s):
MASH*1.5*0
Distribution OK!
Want to Continue with Load? YES//
Loading Distribution...
MASH*1.5*0
Use INSTALL NAME: MASH*1.5*0 to install this Distribution.
1 Load a Distribution
2 Verify Checksums in Transport Global
3 Print Transport Global
4 Compare Transport Global to Current System
5 Backup a Transport Global
6 Install Package(s)
Restart Install of Package(s)
Unload a Distribution
You have PENDING ALERTS
Enter "VA to jump to VIEW ALERTS option
Select Installation <TEST ACCOUNT> Option: INSTall Package(s)
Select INSTALL NAME: MASH*1.5*0 Loaded from Distribution 7/4/17@22:23:2
5
=> Updated version of M-Unit functionality ;Created on Jul 04, 2017@12:5
This Distribution was loaded on Jul 04, 2017@22:23:25 with header of
Updated version of M-Unit functionality ;Created on Jul 04, 2017@12:57:48
It consisted of the following Install(s):
MASH*1.5*0
Checking Install for Package MASH*1.5*0
Install Questions for MASH*1.5*0
Incoming Files:
17.9001 M-UNIT TEST GROUP (including data)
Want KIDS to Rebuild Menu Trees Upon Completion of Install? NO//
Want KIDS to INHIBIT LOGONs during the install? NO//
Want to DISABLE Scheduled Options, Menu Options, and Protocols? NO//
Enter the Device you want to print the Install messages.
You can queue the install by enter a 'Q' at the device prompt.
Enter a '^' to abort the install.
DEVICE: HOME// TELNET
Install Started for MASH*1.5*0 :
Jul 04, 2017@22:24
Build Distribution Date: Jul 04, 2017
Installing Routines:
---------------------------- ADDED COMMENT --------------------------------
While they pass rapidly, a number of apparent errors may be listed, but
these are due to code for Cache systems which is not identified by the
GT.M system. This may be seen again, the first time that unit tests
are run, but on repeating them the apparent errors are not shown on
subsequent runs.
----------------------- END OF ADDED COMMENT ---------------------------
Running Pre-Install Routine: ^ZZUTPRE
Installing Data Dictionaries:
Jul 04, 2017@22:24:04
Installing Data:
Jul 04, 2017@22:24:04
Installing PACKAGE COMPONENTS:
Installing REMOTE PROCEDURE
Installing OPTION
Jul 04, 2017@22:24:05
Running Post-Install Routine: ^ZZUTPOST
Routine: ut Loaded, Saved as %ut
Routine: ut1 Loaded, Saved as %ut1
Routine: utcover Loaded, Saved as %utcover
Routine: utt1 Loaded, Saved as %utt1
Routine: utt2 Loaded, Saved as %utt2
Routine: utt3 Loaded, Saved as %utt3
Routine: utt4 Loaded, Saved as %utt4
Routine: utt5 Loaded, Saved as %utt5
Routine: utt6 Loaded, Saved as %utt6
Routine: utt7 Loaded, Saved as %utt7
Routine: uttcovr Loaded, Saved as %uttcovr
Updating Routine file...
Updating KIDS files...
MASH*1.5*0 Installed.
Jul 04, 2017@22:24:05
NO Install Message sent
Install Completed
1 Load a Distribution
2 Verify Checksums in Transport Global
3 Print Transport Global
4 Compare Transport Global to Current System
5 Backup a Transport Global
6 Install Package(s)
Restart Install of Package(s)
Unload a Distribution
Select Installation <TEST ACCOUNT> Option: ^PG Programmer mode
%GTM-I-BREAK, Break instruction encountered
At M source location PRGMODE+6^%ZOSV
GTM>D ^%utt1
Running tests in NON-VERBOSE mode
For Verbose mode use DO VERBOSE^%utt1(ARG) where ARG is an integer 1 to 3
ENTER RETURN TO CONTINUE: ....
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
......%utt3 ...........
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
................................................................................
Ran 6 Routines, 37 Entry Tags
Checked 109 tests, with 7 failures and encountered 1 error.
GTM>
GTM>
GTM>
GTM>
GTM>
GTM>d EN^%ut("%utt1",3)
----------------------------------- %utt1 -----------------------------------
T1 - - Make sure Start-up Ran.-------------------------------- [OK] 0.000ms
T2 - - Make sure Set-up runs.--------------------------------- [OK] 0.000ms
T3 - - Make sure Teardown runs.------------------------------- [OK] 0.000ms
T4 - Entry point using XTMENT.-------------------------------- [OK] 0.000ms
T5 - Error count check
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
.------------------------------------------------------------- [FAIL] 0.000m
s
T6 - Succeed Entry Point...----------------------------------- [OK] 0.000ms
T7 - Make sure we write to principal even though we are on another device..
------------------------------------------------------------- [OK] 0.000ms
T8 - If IO starts with another device, write to that device as if it's the prici
pal device.--------------------------------------------------- [OK] 0.000ms
COVRPTGL - coverage report returning global....--------------- [OK] 0.000ms
----------------------------------- %utt2 -----------------------------------
T11 - An @TEST Entry point in Another Routine invoked through XTROU offsets.
------------------------------------------------------------- [OK] 0.000ms
T12 - An XTENT offset entry point in Another Routine invoked through XTROU offse
ts.----------------------------------------------------------- [OK] 0.000ms
----------------------------------- %utt4 -----------------------------------
MAIN - - Test coverage calculations--------------------------- [OK] 0.000ms
----------------------------------- %utt5 -----------------------------------
NEWSTYLE - identify new style test indicator functionality.--- [OK] 0.000ms
OLDSTYLE - identify old style test indicator functionality..- [OK] 0.000ms
OLDSTYL1 - identify old style test indicator 2.-------------- [OK] 0.000ms
BADCHKEQ - CHKEQ should fail on unequal value
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
-------------------------------------------------------------- [FAIL] 0.000m
s
BADCHKTF - CHKTF should fail on false value
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
-------------------------------------------------------------- [FAIL] 0.000m
s
BADERROR - throws an error on purpose
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
-------------------------------------------------------------- [FAIL] 0.000m
s
CALLFAIL - called FAIL to test it
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
-------------------------------------------------------------- [FAIL] 0.000m
s
LEAKSOK - check leaks should be ok---------------------------- [OK] 0.000ms
LEAKSBAD - check leaks with leak
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
-------------------------------------------------------------- [FAIL] 0.000m
s
NVLDARG1 - check invalid arg in CHKEQ
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
-------------------------------------------------------------- [FAIL] 0.000m
s
ISUTEST - check ISUTEST inside unit test.--------------------- [OK] 0.000ms
----------------------------------- %utt6 -----------------------------------
SETROUS - - generate array with indices of routines to exclude......
------------------------------------------------------------- [OK] 0.000ms
CHKCMDLN - check command line processing of %utt5------------- [OK] 0.000ms
CHKGUI - check GUI processing of %utt5------------------------ [OK] 0.000ms
CKGUISET - check list of tests returned by GUISET------------- [OK] 0.000ms
NEWSTYLE - test return of valid new style or @TEST indicators...[OK] 0.000ms
---------------------------------- %uttcovr ----------------------------------
RTNANAL - - routine analysis...------------------------------- [OK] 0.000ms
COVCOV - - check COVCOV - remove seen lines......------------- [OK] 0.000ms
COVRPT...........--------------------------------------------- [OK] 10.000ms
COVRPTLS - - coverage report returning text in global...........[OK] 0.000ms
TRIMDATA - - TRIMDATA in %utcover..--------------------------- [OK] 0.000ms
LIST - - LIST in %utcover............------------------------- [OK] 0.000ms
CACHECOV - - set up routine for analysis in globals..--------- [OK] 20.000ms
LINEDATA - - convert code line to based on tags and offset, and identify active
code lines............---------------------------------------- [OK] 0.000ms
TOTAGS - - convert from lines of code by line number to lines ordered by tag, li
ne from tag, and only not covered...........------------------ [OK] 0.000ms
Ran 6 Routines, 37 Entry Tags
Checked 109 tests, with 7 failures and encountered 1 error.
GTM>
GTM>
GTM>
GTM>
GTM>
GTM>d ^%uttcovr
Loading routines to test coverage...
%ut %ut1 %utcover %utf2hex
Routine %utf2hex removed from analysis, since it doesn't have the standard secon
d line format
%utt1 %utt2 %utt3 %utt4 %utt5 %utt6 %utt7 %uttcovr
------------------- RUNNING %utt1 -------------------
....
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
.................
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
................................................................................
Ran 6 Routines, 37 Entry Tags
Checked 109 tests, with 7 failures and encountered 1 error.
Coventry ROU=%utt1
------------------- RUNNING %uttcovr -------------------
......................................................................
Ran 1 Routine, 9 Entry Tags
Checked 70 tests, with 0 failures and encountered 0 errors.
Coventry ROU=%uttcovr
------------------- RUNNING ENTRY^%uttcovr -------------------
LEAKSBAD TEST - X NOT SPECIFIED VARIABLE LEAK: X
xxxxxxxxxxxxxxxxxxxx GOING TO COV^%ut FOR %utt5 at 3
Loading routines to test coverage...
%ut1 ....
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
.
Ran 1 Routine, 11 Entry Tags
Checked 10 tests, with 5 failures and encountered 1 error.
xxxxxxxxxxxxxxxxxxxx GOING TO COV^%ut FOR %utt5 at -1
Loading routines to test coverage...
%ut1 ....
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
.
Ran 1 Routine, 11 Entry Tags
Checked 10 tests, with 5 failures and encountered 1 error.
xxxxxxxxxxxxxxxxxxxx GOING TO MULTAPIS for %utt4 and %ut
------------------- RUNNING ^%ut -------------------
RUNNING COMMAND LINE TESTS VIA DOSET^%ut
....
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
...................
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
................................................................................
Ran 7 Routines, 39 Entry Tags
Checked 111 tests, with 7 failures and encountered 1 error.
Running command line tests by RUNSET^%ut
....
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
...................
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
................................................................................
Ran 7 Routines, 39 Entry Tags
Checked 111 tests, with 7 failures and encountered 1 error.
RUNNING COMMAND LINE UNIT TESTS FOR %utt5
....
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
.
Ran 1 Routine, 11 Entry Tags
Checked 10 tests, with 5 failures and encountered 1 error.
RUNNING UNIT TESTS FOR %utt5 VIA GUI CALLS - Silent
NOW RUNNING UNIT TESTS FOR %uttcovr
......................................................................
Ran 1 Routine, 9 Entry Tags
Checked 70 tests, with 0 failures and encountered 0 errors.
NOW RUNNING UNIT TESTS FOR %utt6
.........
Ran 1 Routine, 5 Entry Tags
Checked 9 tests, with 0 failures and encountered 0 errors.
Coventry ROU=^%ut
------------------- RUNNING ^%utt4 -------------------
----------------------------------- %utt4 -----------------------------------
MAIN - - Test coverage calculations------------------------------------ [OK]
Ran 1 Routine, 1 Entry Tag
Checked 0 test, with 0 failures and encountered 0 errors.
Coventry ROU=^%utt4
------------ SUMMARY ------------
Ran 2 Routines, 6 Entry Tags
Checked 9 tests, with 0 failures and encountered 0 errors.
xxxxxxxxxxxxxxxxxxxx GOING TO COVERAGE for %utt4 and %ut at 3
Loading routines to test coverage...
%ut %ut1 %utcover %utf2hex
Routine %utf2hex removed from analysis, since it doesn't have the standard secon
d line format
%utt1 %utt2 %utt3 %utt4 %utt5 %utt6 %utt7 %uttcovr
------------------- RUNNING ^%ut -------------------
RUNNING COMMAND LINE TESTS VIA DOSET^%ut
....
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
...................
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
................................................................................
Ran 7 Routines, 39 Entry Tags
Checked 111 tests, with 7 failures and encountered 1 error.
Running command line tests by RUNSET^%ut
....
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
...................
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
................................................................................
Ran 7 Routines, 39 Entry Tags
Checked 111 tests, with 7 failures and encountered 1 error.
RUNNING COMMAND LINE UNIT TESTS FOR %utt5
....
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
.
Ran 1 Routine, 11 Entry Tags
Checked 10 tests, with 5 failures and encountered 1 error.
RUNNING UNIT TESTS FOR %utt5 VIA GUI CALLS - Silent
NOW RUNNING UNIT TESTS FOR %uttcovr
......................................................................
Ran 1 Routine, 9 Entry Tags
Checked 70 tests, with 0 failures and encountered 0 errors.
NOW RUNNING UNIT TESTS FOR %utt6
.........
Ran 1 Routine, 5 Entry Tags
Checked 9 tests, with 0 failures and encountered 0 errors.
Coventry ROU=^%ut
------------------- RUNNING ^%utt4 -------------------
----------------------------------- %utt4 -----------------------------------
MAIN - - Test coverage calculations------------------------------------ [OK]
Ran 1 Routine, 1 Entry Tag
Checked 0 test, with 0 failures and encountered 0 errors.
Coventry ROU=^%utt4
------------ SUMMARY ------------
Ran 2 Routines, 6 Entry Tags
Checked 9 tests, with 0 failures and encountered 0 errors.
Routine %utt3 (73.68%) 14 out of 19 lines covered
- Detailed Breakdown
Tag INTERNAL^%utt3 (40.00%) 2 out of 5 lines covered
the following is a list of the lines **NOT** covered
INTERNAL+3 S A=2 ; Dead code
INTERNAL+4 S Y=2 ; Dead code
INTERNAL+5 QUIT ; Dead code
Tag SETUP^%utt3 (100.00%) 1 out of 1 lines covered
Tag SHUTDOWN^%utt3 (100.00%) 1 out of 1 lines covered
Tag STARTUP^%utt3 (100.00%) 3 out of 3 lines covered
Tag T1^%utt3 (100.00%) 2 out of 2 lines covered
Tag T2^%utt3 (60.00%) 3 out of 5 lines covered
the following is a list of the lines **NOT** covered
T2+4 S X=1 ; Dead code
T2+5 QUIT ; Dead code
Tag TEARDOWN^%utt3 (100.00%) 2 out of 2 lines covered
Tag XTMUNITV^%utt3 ------ 0 out of 0 lines covered
Routine %utt3 (73.68%) 14 out of 19 lines covered
- Summary
Tag INTERNAL^%utt3 (40.00%) 2 out of 5 lines covered
Tag SETUP^%utt3 (100.00%) 1 out of 1 lines covered
Tag SHUTDOWN^%utt3 (100.00%) 1 out of 1 lines covered
Tag STARTUP^%utt3 (100.00%) 3 out of 3 lines covered
Tag T1^%utt3 (100.00%) 2 out of 2 lines covered
Tag T2^%utt3 (60.00%) 3 out of 5 lines covered
Tag TEARDOWN^%utt3 (100.00%) 2 out of 2 lines covered
Tag XTMUNITV^%utt3 ------ 0 out of 0 lines covered
Routine %utt3 (73.68%) 14 out of 19 lines covered
Overall Analysis 14 out of 19 lines covered (73% coverage)
xxxxxxxxxxxxxxxxxxxx LISTING DATA VIA LIST
Routine %utt3 (73.68%) 14 out of 19 lines covered
- Detailed Breakdown
Tag INTERNAL^%utt3 (40.00%) 2 out of 5 lines covered
the following is a list of the lines **NOT** covered
INTERNAL+3 S A=2 ; Dead code
INTERNAL+4 S Y=2 ; Dead code
INTERNAL+5 QUIT ; Dead code
Tag SETUP^%utt3 (100.00%) 1 out of 1 lines covered
Tag SHUTDOWN^%utt3 (100.00%) 1 out of 1 lines covered
Tag STARTUP^%utt3 (100.00%) 3 out of 3 lines covered
Tag T1^%utt3 (100.00%) 2 out of 2 lines covered
Tag T2^%utt3 (60.00%) 3 out of 5 lines covered
the following is a list of the lines **NOT** covered
T2+4 S X=1 ; Dead code
T2+5 QUIT ; Dead code
Tag TEARDOWN^%utt3 (100.00%) 2 out of 2 lines covered
Tag XTMUNITV^%utt3 ------ 0 out of 0 lines covered
Routine %utt3 (73.68%) 14 out of 19 lines covered
- Summary
Tag INTERNAL^%utt3 (40.00%) 2 out of 5 lines covered
Tag SETUP^%utt3 (100.00%) 1 out of 1 lines covered
Tag SHUTDOWN^%utt3 (100.00%) 1 out of 1 lines covered
Tag STARTUP^%utt3 (100.00%) 3 out of 3 lines covered
Tag T1^%utt3 (100.00%) 2 out of 2 lines covered
Tag T2^%utt3 (60.00%) 3 out of 5 lines covered
Tag TEARDOWN^%utt3 (100.00%) 2 out of 2 lines covered
Tag XTMUNITV^%utt3 ------ 0 out of 0 lines covered
Routine %utt3 (73.68%) 14 out of 19 lines covered
Overall Analysis 14 out of 19 lines covered (73% coverage)
xxxxxxxxxxxxxxxxxxxx Finished in ENTRY^%uttcovr
Coventry ROU=ENTRY^%uttcovr
------------------- RUNNING VERBOSE2^%utt6 -------------------
RUNNING COMMAND LINE TESTS VIA DOSET^%ut
----------------------------------- %utt1 -----------------------------------
T1 - - Make sure Start-up Ran.-------------------------------- [OK] 0.000ms
T2 - - Make sure Set-up runs.--------------------------------- [OK] 0.000ms
T3 - - Make sure Teardown runs.------------------------------- [OK] 0.000ms
T4 - Entry point using XTMENT.-------------------------------- [OK] 0.000ms
T5 - Error count check
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
.------------------------------------------------------------- [FAIL] 0.000m
s
T6 - Succeed Entry Point...----------------------------------- [OK] 0.000ms
T7 - Make sure we write to principal even though we are on another device..
------------------------------------------------------------- [OK] 0.000ms
T8 - If IO starts with another device, write to that device as if it's the prici
pal device.--------------------------------------------------- [OK] 0.000ms
COVRPTGL - coverage report returning global....--------------- [OK] 20.000ms
----------------------------------- %utt2 -----------------------------------
T11 - An @TEST Entry point in Another Routine invoked through XTROU offsets.
------------------------------------------------------------- [OK] 0.000ms
T12 - An XTENT offset entry point in Another Routine invoked through XTROU offse
ts.----------------------------------------------------------- [OK] 0.000ms
----------------------------------- %utt3 -----------------------------------
T1 - Test 1.-------------------------------------------------- [OK] 0.000ms
T2 - Test 2.-------------------------------------------------- [OK] 0.000ms
----------------------------------- %utt4 -----------------------------------
MAIN - - Test coverage calculations--------------------------- [OK] 0.000ms
----------------------------------- %utt5 -----------------------------------
NEWSTYLE - identify new style test indicator functionality.--- [OK] 0.000ms
OLDSTYLE - identify old style test indicator functionality..- [OK] 0.000ms
OLDSTYL1 - identify old style test indicator 2.-------------- [OK] 0.000ms
BADCHKEQ - CHKEQ should fail on unequal value
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
-------------------------------------------------------------- [FAIL] 0.000m
s
BADCHKTF - CHKTF should fail on false value
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
-------------------------------------------------------------- [FAIL] 0.000m
s
BADERROR - throws an error on purpose
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
-------------------------------------------------------------- [FAIL] 0.000m
s
CALLFAIL - called FAIL to test it
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
-------------------------------------------------------------- [FAIL] 0.000m
s
LEAKSOK - check leaks should be ok---------------------------- [OK] 0.000ms
LEAKSBAD - check leaks with leak
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
-------------------------------------------------------------- [FAIL] 0.000m
s
NVLDARG1 - check invalid arg in CHKEQ
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
-------------------------------------------------------------- [FAIL] 0.000m
s
ISUTEST - check ISUTEST inside unit test.--------------------- [OK] 0.000ms
----------------------------------- %utt6 -----------------------------------
SETROUS - - generate array with indices of routines to exclude......
------------------------------------------------------------- [OK] 0.000ms
CHKCMDLN - check command line processing of %utt5------------- [OK] 0.000ms
CHKGUI - check GUI processing of %utt5------------------------ [OK] 0.000ms
CKGUISET - check list of tests returned by GUISET------------- [OK] 0.000ms
NEWSTYLE - test return of valid new style or @TEST indicators...[OK] 0.000ms
---------------------------------- %uttcovr ----------------------------------
RTNANAL - - routine analysis...------------------------------- [OK] 0.000ms
COVCOV - - check COVCOV - remove seen lines......------------- [OK] 0.000ms
COVRPT...........--------------------------------------------- [OK] 20.000ms
COVRPTLS - - coverage report returning text in global...........[OK] 10.000ms
TRIMDATA - - TRIMDATA in %utcover..--------------------------- [OK] 0.000ms
LIST - - LIST in %utcover............------------------------- [OK] 0.000ms
CACHECOV - - set up routine for analysis in globals..--------- [OK] 20.000ms
LINEDATA - - convert code line to based on tags and offset, and identify active
code lines............---------------------------------------- [OK] 0.000ms
TOTAGS - - convert from lines of code by line number to lines ordered by tag, li
ne from tag, and only not covered...........------------------ [OK] 0.000ms
Ran 7 Routines, 39 Entry Tags
Checked 111 tests, with 7 failures and encountered 1 error.
Running command line tests by RUNSET^%ut
....
T5^%utt1 - Error count check - This is an intentional failure
.
T5^%utt1 - Error count check - Intentionally throwing a failure
...................
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
LEAKSBAD^%utt5 - check leaks with leak - LEAKSBAD TEST - X NOT SPECIFIED VARIABL
E LEAK: X
NVLDARG1^%utt5 - check invalid arg in CHKEQ - NO VALUES INPUT TO CHKEQ^%ut - no
evaluation possible
................................................................................
Ran 7 Routines, 39 Entry Tags
Checked 111 tests, with 7 failures and encountered 1 error.
RUNNING COMMAND LINE UNIT TESTS FOR %utt5
----------------------------------- %utt5 -----------------------------------
NEWSTYLE - identify new style test indicator functionality.--- [OK] 0.000ms
OLDSTYLE - identify old style test indicator functionality..- [OK] 0.000ms
OLDSTYL1 - identify old style test indicator 2.-------------- [OK] 0.000ms
BADCHKEQ - CHKEQ should fail on unequal value
BADCHKEQ^%utt5 - CHKEQ should fail on unequal value - <4> vs <3> - SET UNEQUAL
ON PURPOSE - SHOULD FAIL
-------------------------------------------------------------- [FAIL] 0.000m
s
BADCHKTF - CHKTF should fail on false value
BADCHKTF^%utt5 - CHKTF should fail on false value - SET FALSE (0) ON PURPOSE -
SHOULD FAIL
-------------------------------------------------------------- [FAIL] 0.000m
s
BADERROR - throws an error on purpose
BADERROR^%utt5 - throws an error on purpose - Error: 150372778,BADERROR+6^%utt5
,%GTM-E-EXPR, Expression expected but not found
-------------------------------------------------------------- [FAIL] 0.000m
s
CALLFAIL - called FAIL to test it
CALLFAIL^%utt5 - called FAIL to test it - Called FAIL to test it
-------------------------------------------------------------- [FAIL] 0.000m
s
LEAKSOK - check leaks should be ok---------------------------- [OK] 0.000ms
LEAKSBAD - check leaks with leak