-
Notifications
You must be signed in to change notification settings - Fork 0
/
gregg_dict.unit
1547 lines (1247 loc) · 379 KB
/
gregg_dict.unit
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
#!/usr/local/bin/koios
# koios-polos (axis of heaven) unit testing meta-language
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
PREP include the prototype headers - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
incl include public header gregg.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
incl include private header gregg_priv.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP (DICT) verify allocating and freeing dictionary items 0s memory DICT__new, DICT__force, DICT__free, DICT__wipe ((01.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
local create working/return variables - - - - - - - - - - - - - tDICT *x_dict = NULL;
local create working/return variables - - - - - - - - - - - - - tDICT *x_save = NULL;
COND attempt to free a non-existant object - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call free DICT__free &x_dict i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_dict p_null 0
COND verify creating an object - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call new DICT__new &x_dict i_equal 1
echo ... check pointer - - - - - - - - - - - - - x_dict p_exists 0
COND (0) verify object is wiped - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
echo ... check english - - - - - - - - - - - - - x_dict->d_english w_equal åæ
echo ... check gregg - - - - - - - - - - - - - x_dict->d_gregg w_equal åæ
echo ... check prefix - - - - - - - - - - - - - x_dict->d_prefix p_null 0
echo ... check base - - - - - - - - - - - - - x_dict->d_base p_null 0
echo ... check suffix - - - - - - - - - - - - - x_dict->d_suffix p_null 0
echo ... check prev - - - - - - - - - - - - - x_dict->d_prev p_null 0
echo ... check next - - - - - - - - - - - - - x_dict->d_next p_null 0
echo ... check btree - - - - - - - - - - - - - x_dict->d_ysort p_null 0
COND change the contents - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... change english - - - - - - - - - - - - - strcpy (x_dict->d_english, "english");
code ... change gregg - - - - - - - - - - - - - strcpy (x_dict->d_gregg , "gregg" );
code ... change prefix - - - - - - - - - - - - - x_dict->d_prefix = 0x2;
code ... change base - - - - - - - - - - - - - x_dict->d_base = 0x4;
code ... change suffix - - - - - - - - - - - - - x_dict->d_suffix = 0x6;
code ... change prev - - - - - - - - - - - - - x_dict->d_prev = 0x8;
code ... change next - - - - - - - - - - - - - x_dict->d_next = 0xa;
code ... change ysort - - - - - - - - - - - - - x_dict->d_ysort = 0xc;
COND verify wiping the object - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call wipe DICT__wipe x_dict i_equal 1
DITTO (0) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND attempt to create with a used-pointer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... save previous instance - - - - - - - - - - - - - x_save = x_dict;
exec call new DICT__new &x_dict i_lesser 0
echo ... check pointer does not change - - - - - - - - - - - - - x_dict p_equal [[ x_save ]]
COND verify freeing the pointer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call free DICT__free &x_dict i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_dict p_null 0
COND attempt to free a grounded pointer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call free DICT__free &x_dict i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_dict p_null 0
COND verify creating another object - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call new DICT__new &x_dict i_equal 1
echo ... check pointer - - - - - - - - - - - - - x_dict p_exists 0
DITTO (0) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND verify forcing the creation reusing the ponter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... save previous instance - - - - - - - - - - - - - x_save = x_dict;
exec call new BASE__force &x_dict i_equal 1
echo ... check pointer - - - - - - - - - - - - - x_dict p_exists 0
echo ... check pointer did change - - - - - - - - - - - - - x_dict p_not [[ x_save ]]
DITTO (0) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND verify freeing the first - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call free DICT__free &x_save i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_save p_null 0
COND verify freeing the second - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call free DICT__free &x_dict i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_dict p_null 0
COND attempt to create with null return pointer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call new DICT__new NULL i_lesser 0
COND complete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((04.003)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec stop testing PROG__unit_end i_equal 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP [Àè] (DICT) verify openning and closing the dictionary 0s open SHARED_open, SHARED_close ((01.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
local create working/return variable - - - - - - - - - - - - - FILE *f = NULL;
COND attempt to open with trouble - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call open SHARED_open NULL , 'r' , &f i_lesser 0
exec call open SHARED_open "" , 'r' , &f i_lesser 0
exec call open SHARED_open NAME_DICT , 'r' , NULL i_lesser 0
COND verify openning dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call open SHARED_open NAME_DICT , 'r' , &f i_equal 0
echo ... check pointer - - - - - - - - - - - - - f p_exists 0
COND attempt to re-open already open dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call open SHARED_open NAME_DICT , 'r' , &f i_lesser 0
echo ... check pointer - - - - - - - - - - - - - f p_exists 0
COND attempt to close with trouble - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call close SHARED_close NULL i_lesser 0
COND verify closing dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call close SHARED_close &f i_equal 0
echo ... check pointer - - - - - - - - - - - - - f p_null 0
COND attempt to close already closed dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call close SHARED_close &f i_lesser 0
COND complete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec stop testing PROG__unit_end i_equal 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP [Àè] (DICT) verify reading lines from dictionary 0s read DICT__read ((01.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
local create working/return variable - - - - - - - - - - - - - FILE *f = NULL;
local create working/return variable - - - - - - - - - - - - - char x_pre [LEN_HUND] = "";
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - short x_line = 0;
local create working/return variable - - - - - - - - - - - - - char *x_name = "/tmp/gregg.dict";
COND create a small dictionary file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec create empty file yURG_touch x_name , "root" , "root" , "0600" i_equal 0
file read for writing - - - - - - - - - - - - - [[ x_name ]]
append ... add a record - - - - - - - - - - - - - # natsvi configuration file
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - #23456789-123456789- § 123456789-123456789- §
append ... add a record - - - - - - - - - - - - - head § h·e·d §
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - tail § t·a·l § # comment
append ... add a record - - - - - - - - - - - - - prev § pr·e·v §
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - next § n·e·xs §
exec verify file size yURG_peek_count x_name i_equal 10
COND attempt to read from un-openned dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call read DICT__read f , &x_line , &x_pre , x_recd i_lesser 0
COND verify openning dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call open SHARED_open x_name , 'r' , &f i_equal 0
echo ... check pointer - - - - - - - - - - - - - f p_exists 0
COND attempt to read with troubles - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call read DICT__read NULL , &x_line , &x_pre , x_recd i_lesser 0
exec call read DICT__read f , &x_line , &x_pre , NULL i_lesser 0
COND verify reading first real record - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call read DICT__read f , &x_line , &x_pre , x_recd i_equal 0
echo ... check line - - - - - - - - - - - - - x_line i_equal 4
echo ... check record - - - - - - - - - - - - - x_recd w_equal åhead § h·e·d §æ
COND verify reading second (with comment after) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call read DICT__read f , &x_line , &x_pre , x_recd i_equal 0
echo ... check line - - - - - - - - - - - - - x_line i_equal 6
echo ... check record - - - - - - - - - - - - - x_recd w_equal åtail § t·a·l § æ
COND verify last two - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call read DICT__read f , &x_line , &x_pre , x_recd i_equal 0
echo ... check line - - - - - - - - - - - - - x_line i_equal 7
echo ... check record - - - - - - - - - - - - - x_recd w_equal åprev § pr·e·v §æ
exec call read DICT__read f , &x_line , &x_pre , x_recd i_equal 0
echo ... check line - - - - - - - - - - - - - x_line i_equal 10
echo ... check record - - - - - - - - - - - - - x_recd w_equal ånext § n·e·xs §æ
COND verify hitting end-of-file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call read DICT__read f , &x_line , &x_pre , x_recd i_lesser 0
echo ... check line - - - - - - - - - - - - - x_line i_equal 10
echo ... check record - - - - - - - - - - - - - x_recd s_equal (eof)
exec call read (read past) DICT__read f , &x_line , &x_pre , x_recd i_lesser 0
echo ... check line - - - - - - - - - - - - - x_line i_equal 10
echo ... check record - - - - - - - - - - - - - x_recd s_equal (eof)
COND verify closing dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call close SHARED_close &f i_equal 0
echo ... check pointer - - - - - - - - - - - - - f p_null 0
COND complete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec stop testing PROG__unit_end i_equal 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP (WORDS) verify splitting input into fields 0s split DICT__split ((03.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
COND verify split a single element - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call record splitting DICT__split "get" i_lesser 0
echo ... check count - - - - - - - - - - - - - s_nfield i_equal 1
echo ... check field - - - - - - - - - - - - - s_fields [0] s_equal get
echo ... check field - - - - - - - - - - - - - s_fields [1] s_equal
COND attempt split with null - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call record splitting DICT__split NULL i_lesser 0
echo ... check count - - - - - - - - - - - - - s_nfield i_equal 0
echo ... check field - - - - - - - - - - - - - s_fields [0] s_equal
COND verify split a two elements - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call record splitting DICT__split "get § g·e·t §" i_equal 0
echo ... check count - - - - - - - - - - - - - s_nfield i_equal 2
echo ... check field - - - - - - - - - - - - - s_fields [0] s_equal get
echo ... check field - - - - - - - - - - - - - s_fields [1] s_equal g·e·t
echo ... check field - - - - - - - - - - - - - s_fields [2] s_equal
COND verify split a parts-of-speech - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call record splitting DICT__split "get § g·e·t § v s - §" i_equal 0
echo ... check count - - - - - - - - - - - - - s_nfield i_equal 3
echo ... check field - - - - - - - - - - - - - s_fields [0] s_equal get
echo ... check field - - - - - - - - - - - - - s_fields [1] s_equal g·e·t
echo ... check field - - - - - - - - - - - - - s_fields [2] s_equal v s -
echo ... check field - - - - - - - - - - - - - s_fields [3] s_equal
COND verify split with variants - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call record splitting DICT__split "get § g·e·t § v s - § n) gotten § ´) getting § r) getter §" i_equal 0
echo ... check count - - - - - - - - - - - - - s_nfield i_equal 6
echo ... check field - - - - - - - - - - - - - s_fields [0] s_equal get
echo ... check field - - - - - - - - - - - - - s_fields [1] s_equal g·e·t
echo ... check field - - - - - - - - - - - - - s_fields [2] s_equal v s -
echo ... check field - - - - - - - - - - - - - s_fields [3] s_equal n) gotten
echo ... check field - - - - - - - - - - - - - s_fields [4] s_equal ´) getting
echo ... check field - - - - - - - - - - - - - s_fields [5] s_equal r) getter
echo ... check field - - - - - - - - - - - - - s_fields [6] s_equal
COND complete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec stop testing PROG__unit_end i_equal 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP (DICT) verify creation of base 0s base DICT__base ((03.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - char x_english [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - char x_gregg [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - void *x_base = NULL;
COND verify initial conditions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get check the counts BASE__count i_equal 0
get ... check entry BASE__entry 0 s_equal n/a
get ... check entry BASE__entry 1 s_equal n/a
get ... check entry BASE__entry 2 s_equal n/a
get ... check entry BASE__entry 3 s_equal n/a
get ... check entry BASE__entry 4 s_equal n/a
get check the counts DICT__count i_equal 0
get ... check entry DICT__entry 0 s_equal n/a
get ... check entry DICT__entry 1 s_equal n/a
get ... check entry DICT__entry 2 s_equal n/a
get ... check entry DICT__entry 3 s_equal n/a
get ... check entry DICT__entry 4 s_equal n/a
COND verify simple base - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "the § · § th § · · · · · · · § · §");
exec call base DICT__base 0 , 15 , x_recd , x_english , x_gregg , &x_base i_equal 0
echo ... check english - - - - - - - - - - - - - x_english w_equal åtheæ
echo ... check gregg - - - - - - - - - - - - - x_gregg w_equal åthæ
echo ... check pointer - - - - - - - - - - - - - x_base p_exists 0
get ... check pointer BASE__pointer 0 , x_base s_equal ¬¬¬¬¬ 3åtheæ 0/ 15 1 · · · · 0 · 0 2åthæ 2åthæ 04
COND (0) verify data results - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get check the counts BASE__count i_equal 1
get ... check entry BASE__entry 0 s_equal 0 3åtheæ 0/ 15 1 · · · · 0 · 0 2åthæ 2åthæ 04
get ... check entry BASE__entry 1 s_equal n/a
get ... check entry BASE__entry 2 s_equal n/a
get ... check entry BASE__entry 3 s_equal n/a
get ... check entry BASE__entry 4 s_equal n/a
get check the counts DICT__count i_equal 1
get ... check entry DICT__entry 0 s_equal 0 3åtheæ 2åthæ ´ the ´ · · ´ · ´ · ´
get ... check entry DICT__entry 1 s_equal n/a
get ... check entry DICT__entry 2 s_equal n/a
get ... check entry DICT__entry 3 s_equal n/a
get ... check entry DICT__entry 4 s_equal n/a
COND attempt with null fields - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "test § · § t·e·z·t § v · · · · · · § · §");
exec call base DICT__base 2 , 23 , NULL , x_english , x_gregg , &x_base i_lesser 0
exec call base DICT__base 2 , 23 , x_recd , NULL , x_gregg , &x_base i_lesser 0
exec call base DICT__base 2 , 23 , x_recd , x_english , NULL , &x_base i_lesser 0
DITTO (0) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND verify a second entry - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "test § · § t·e·z·t § v · · · · · · § · §");
exec call base DICT__base 2 , 23 , x_recd , x_english , x_gregg , &x_base i_equal 0
get check the counts BASE__count i_equal 2
get ... check entry BASE__entry 0 s_equal 0 4åtestæ 2/ 23 1 v · · · 0 · 0 7åt·e·z·tæ 9åt·edz·z·tæ 01·37·30·01
get ... check entry BASE__entry 1 s_equal 1 3åtheæ 0/ 15 1 · · · · 0 · 0 2åthæ 2åthæ 04
get ... check entry BASE__entry 2 s_equal n/a
get ... check entry BASE__entry 3 s_equal n/a
get ... check entry BASE__entry 4 s_equal n/a
get check the counts DICT__count i_equal 2
get ... check entry DICT__entry 0 s_equal 0 4åtestæ 7åt·e·z·tæ ´ test ´ · · ´ · ´ · ´
get ... check entry DICT__entry 1 s_equal 1 3åtheæ 2åthæ ´ the ´ · · ´ · ´ · ´
get ... check entry DICT__entry 2 s_equal n/a
get ... check entry DICT__entry 3 s_equal n/a
get ... check entry DICT__entry 4 s_equal n/a
echo ... check english - - - - - - - - - - - - - x_english w_equal åtestæ
echo ... check gregg - - - - - - - - - - - - - x_gregg w_equal åt·e·z·tæ
echo ... check pointer - - - - - - - - - - - - - x_base p_exists 0
get ... check pointer BASE__pointer 0 , x_base s_equal ¬¬¬¬¬ 4åtestæ 2/ 23 1 v · · · 0 · 0 7åt·e·z·tæ 9åt·edz·z·tæ 01·37·30·01
COND complete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec stop testing PROG__unit_end i_equal 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP (DICT) verify suffix/variation processing 0s suffix DICT__suffixes, DICT__prefixes ((03.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - char x_english [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - char x_gregg [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - void *x_base = NULL;
REUSE -C- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -D- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -E- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -F- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND (0) verify initial conditions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get check the counts BASE__count i_equal 0
get ... check entry BASE__entry 0 s_equal n/a
get ... check entry BASE__entry 1 s_equal n/a
get ... check entry BASE__entry 2 s_equal n/a
get ... check entry BASE__entry 3 s_equal n/a
get ... check entry BASE__entry 4 s_equal n/a
get check the counts DICT__count i_equal 0
get ... check entry DICT__entry 0 s_equal n/a
get ... check entry DICT__entry 1 s_equal n/a
get ... check entry DICT__entry 2 s_equal n/a
get ... check entry DICT__entry 3 s_equal n/a
get ... check entry DICT__entry 4 s_equal n/a
COND (1) verify simple base - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "test § · § t·e·z·t § · · · · · · · § · § ´) testing § s) tests § d) tested § /) www § R) tester § +B) testable §");
exec call base DICT__base 0 , 15 , x_recd , x_english , x_gregg , &x_base i_equal 0
echo ... check english - - - - - - - - - - - - - x_english w_equal åtestæ
echo ... check gregg - - - - - - - - - - - - - x_gregg w_equal åt·e·z·tæ
echo ... check pointer - - - - - - - - - - - - - x_base p_exists 0
get ... check pointer BASE__pointer 0 , x_base s_equal ¬¬¬¬¬ 4åtestæ 0/ 15 1 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
COND (2) check current bases - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 1
get ... check entry BASE__entry 0 s_equal 0 4åtestæ 0/ 15 1 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 1 s_equal n/a
COND verify calling suffixes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call suffixes DICT__suffixes x_base , NULL , x_gregg i_equal 0
COND (3) check current bases and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 1
get ... check entry BASE__entry 0 s_equal 0 4åtestæ 0/ 15 12 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 1 s_equal n/a
get check the counts DICT__count i_equal 12
get ... check entry DICT__entry 0 s_equal 0 4åtestæ 7åt·e·z·tæ ´ test ´ · · ´ · ´ testing ´
get ... check entry DICT__entry 1 s_equal 1 13åtestabilitiesæ 15åt·e·z·t·>·b·e·sæ ´ test ´ · bes ´ testability ´ · ´
get ... check entry DICT__entry 2 s_equal 2 11åtestabilityæ 13åt·e·z·t·>·b·eæ ´ test ´ · be ´ testableness ´ testabilities ´
get ... check entry DICT__entry 3 s_equal 3 8åtestableæ 11åt·e·z·t·>·bæ ´ test ´ · b ´ testers ´ testables ´
get ... check entry DICT__entry 4 s_equal 4 12åtestablenessæ 13åt·e·z·t·>·b·næ ´ test ´ · bn ´ testably ´ testability ´
get ... check entry DICT__entry 5 s_equal 5 9åtestablesæ 13åt·e·z·t·>·b·zæ ´ test ´ · B ´ testable ´ testably ´
get ... check entry DICT__entry 6 s_equal 6 8åtestablyæ 13åt·e·z·t·>·b·læ ´ test ´ · bl ´ testables ´ testableness ´
get ... check entry DICT__entry 7 s_equal 7 6åtestedæ 11åt·e·z·t·>·dæ ´ test ´ · d ´ tests ´ tester ´
get ... check entry DICT__entry 8 s_equal 8 6åtesteræ 11åt·e·z·t·>·ræ ´ test ´ · r ´ tested ´ testers ´
get ... check entry DICT__entry 9 s_equal 9 7åtestersæ 13åt·e·z·t·>·r·zæ ´ test ´ · R ´ tester ´ testable ´
get ... check entry DICT__entry 10 s_equal 10 7åtestingæ 11åt·e·z·t·>·´æ ´ test ´ · ´ ´ test ´ tests ´
get ... check entry DICT__entry 11 s_equal 11 5åtestsæ 11åt·e·z·t·>·sæ ´ test ´ · s ´ testing ´ tested ´
get ... check entry DICT__entry 12 s_equal n/a
COND (4) purge roots and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call dictionary purge DICT__purge i_equal 0
exec call base purge BASE__purge i_equal 0
DITTO (0) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DITTO (1) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DITTO (2) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND verify calling prefixes (with empty string) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "" i_equal 0
DITTO (3) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DITTO (4) purge roots and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DITTO (0) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DITTO (1) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DITTO (2) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND verify calling prefixes (with self marker only) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "´" i_equal 0
DITTO (3) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND complete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec stop testing PROG__unit_end i_equal 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP (DICT) verify prefix processing 0s prefix DICT__prefixes ((03.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - char x_english [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - char x_gregg [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - void *x_base = NULL;
REUSE -C- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -D- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -E- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -F- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND (0) verify initial conditions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get check the counts BASE__count i_equal 0
get ... check entry BASE__entry 0 s_equal n/a
get ... check entry BASE__entry 1 s_equal n/a
get ... check entry BASE__entry 2 s_equal n/a
get ... check entry BASE__entry 3 s_equal n/a
get ... check entry BASE__entry 4 s_equal n/a
get check the counts DICT__count i_equal 0
get ... check entry DICT__entry 0 s_equal n/a
get ... check entry DICT__entry 1 s_equal n/a
get ... check entry DICT__entry 2 s_equal n/a
get ... check entry DICT__entry 3 s_equal n/a
get ... check entry DICT__entry 4 s_equal n/a
COND (1) verify simple base - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "test § · § t·e·z·t § · · · · · · · § · § ´) testing § s) tests § d) tested §");
exec call base DICT__base 0 , 15 , x_recd , x_english , x_gregg , &x_base i_equal 0
echo ... check english - - - - - - - - - - - - - x_english w_equal åtestæ
echo ... check gregg - - - - - - - - - - - - - x_gregg w_equal åt·e·z·tæ
echo ... check pointer - - - - - - - - - - - - - x_base p_exists 0
get ... check pointer BASE__pointer 0 , x_base s_equal ¬¬¬¬¬ 4åtestæ 0/ 15 1 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
COND (2) check current bases - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 1
get ... check entry BASE__entry 0 s_equal 0 4åtestæ 0/ 15 1 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 1 s_equal n/a
COND verify calling prefixes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "´,pre,re" i_equal 0
COND (3) check current bases and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 1
get ... check entry BASE__entry 0 s_equal 0 4åtestæ 0/ 15 12 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 1 s_equal n/a
get check the counts DICT__count i_equal 12
get ... check entry DICT__entry 0 s_equal 0 7åpretestæ 11åp·<·t·e·z·tæ ´ test ´ pre · ´ tested ´ pretesting ´
get ... check entry DICT__entry 1 s_equal 1 9åpretestedæ 15åp·<·t·e·z·t·>·dæ ´ test ´ pre d ´ pretests ´ retest ´
get ... check entry DICT__entry 2 s_equal 2 10åpretestingæ 15åp·<·t·e·z·t·>·´æ ´ test ´ pre ´ ´ pretest ´ pretests ´
get ... check entry DICT__entry 3 s_equal 3 8åpretestsæ 15åp·<·t·e·z·t·>·sæ ´ test ´ pre s ´ pretesting ´ pretested ´
get ... check entry DICT__entry 4 s_equal 4 6åretestæ 11år·<·t·e·z·tæ ´ test ´ re · ´ pretested ´ retesting ´
get ... check entry DICT__entry 5 s_equal 5 8åretestedæ 15år·<·t·e·z·t·>·dæ ´ test ´ re d ´ retests ´ · ´
get ... check entry DICT__entry 6 s_equal 6 9åretestingæ 15år·<·t·e·z·t·>·´æ ´ test ´ re ´ ´ retest ´ retests ´
get ... check entry DICT__entry 7 s_equal 7 7åretestsæ 15år·<·t·e·z·t·>·sæ ´ test ´ re s ´ retesting ´ retested ´
get ... check entry DICT__entry 8 s_equal 8 4åtestæ 7åt·e·z·tæ ´ test ´ · · ´ · ´ testing ´
get ... check entry DICT__entry 9 s_equal 9 6åtestedæ 11åt·e·z·t·>·dæ ´ test ´ · d ´ tests ´ pretest ´
get ... check entry DICT__entry 10 s_equal 10 7åtestingæ 11åt·e·z·t·>·´æ ´ test ´ · ´ ´ test ´ tests ´
get ... check entry DICT__entry 11 s_equal 11 5åtestsæ 11åt·e·z·t·>·sæ ´ test ´ · s ´ testing ´ tested ´
get ... check entry DICT__entry 12 s_equal n/a
COND complete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec stop testing PROG__unit_end i_equal 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -a- add a single word base with suffixes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((02.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - char x_english [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - char x_gregg [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - void *x_base = NULL;
COND verify simple base - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "teach § · § t·e·ch § ¬ § · § ´) teaching § s) teaches § d) taught § r) teacher § b) teachable §");
exec call base DICT__base 0 , 3 , x_recd , x_english , x_gregg , &x_base i_equal 0
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "" i_equal 0
get check the counts DICT__count i_equal 6
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -b- verify single word with suffixes (a) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND check current bases and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 1
get ... check entry BASE__entry 0 s_equal 0 5åteachæ 0/ 3 6 · · · · 0 · 0 6åt·e·chæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 1 s_equal n/a
get check the counts DICT__count i_equal 6
get ... check entry DICT__entry 0 s_equal 0 6åtaughtæ 10åt·e·ch·>·dæ ´ teach ´ · d ´ teaches ´ teacher ´
get ... check entry DICT__entry 1 s_equal 1 5åteachæ 6åt·e·chæ ´ teach ´ · · ´ · ´ teaching ´
get ... check entry DICT__entry 2 s_equal 2 9åteachableæ 10åt·e·ch·>·bæ ´ teach ´ · b ´ teacher ´ · ´
get ... check entry DICT__entry 3 s_equal 3 7åteacheræ 10åt·e·ch·>·ræ ´ teach ´ · r ´ taught ´ teachable ´
get ... check entry DICT__entry 4 s_equal 4 7åteachesæ 10åt·e·ch·>·sæ ´ teach ´ · s ´ teaching ´ taught ´
get ... check entry DICT__entry 5 s_equal 5 8åteachingæ 10åt·e·ch·>·´æ ´ teach ´ · ´ ´ teach ´ teaches ´
get ... check entry DICT__entry 6 s_equal n/a
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -c- single word base with prefixes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((02.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - char x_english [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - char x_gregg [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - void *x_base = NULL;
COND verify simple base - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((03.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "test § · § t·e·z·t § ¬ § · § ´) testing § s) tests § d) tested § /) www § R) tester § +B) testable §");
exec call base DICT__base 1 , 1 , x_recd , x_english , x_gregg , &x_base i_equal 0
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "´,pre,re" i_equal 0
get check the counts DICT__count i_equal 42
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -d- single word base with prefixes (c) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND check current bases and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 2
get ... check entry BASE__entry 0 s_equal 0 5åteachæ 0/ 3 6 · · · · 0 · 0 6åt·e·chæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 1 s_equal 1 4åtestæ 1/ 1 36 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 2 s_equal n/a
get check the counts DICT__count i_equal 42
get ... check entry DICT__entry 0 s_equal 0 7åpretestæ 11åp·<·t·e·z·tæ ´ test ´ pre · ´ testabilities ´ pretesting ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 16åpretestabilitiesæ 19åp·<·t·e·z·t·>·b·e·sæ ´ test ´ pre bes ´ pretestability ´ retest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 14åpretestabilityæ 17åp·<·t·e·z·t·>·b·eæ ´ test ´ pre be ´ pretestableness ´ pretestabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åpretestableæ 15åp·<·t·e·z·t·>·bæ ´ test ´ pre b ´ pretesters ´ pretestables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 15åpretestablenessæ 17åp·<·t·e·z·t·>·b·næ ´ test ´ pre bn ´ pretestably ´ pretestability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 12åpretestablesæ 17åp·<·t·e·z·t·>·b·zæ ´ test ´ pre B ´ pretestable ´ pretestably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åpretestablyæ 17åp·<·t·e·z·t·>·b·læ ´ test ´ pre bl ´ pretestables ´ pretestableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åpretestedæ 15åp·<·t·e·z·t·>·dæ ´ test ´ pre d ´ pretests ´ pretester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åpretesteræ 15åp·<·t·e·z·t·>·ræ ´ test ´ pre r ´ pretested ´ pretesters ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åpretestersæ 17åp·<·t·e·z·t·>·r·zæ ´ test ´ pre R ´ pretester ´ pretestable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åpretestingæ 15åp·<·t·e·z·t·>·´æ ´ test ´ pre ´ ´ pretest ´ pretests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åpretestsæ 15åp·<·t·e·z·t·>·sæ ´ test ´ pre s ´ pretesting ´ pretested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åretestæ 11år·<·t·e·z·tæ ´ test ´ re · ´ pretestabilities ´ retesting ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 15åretestabilitiesæ 19år·<·t·e·z·t·>·b·e·sæ ´ test ´ re bes ´ retestability ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 13åretestabilityæ 17år·<·t·e·z·t·>·b·eæ ´ test ´ re be ´ retestableness ´ retestabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åretestableæ 15år·<·t·e·z·t·>·bæ ´ test ´ re b ´ retesters ´ retestables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 14åretestablenessæ 17år·<·t·e·z·t·>·b·næ ´ test ´ re bn ´ retestably ´ retestability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åretestablesæ 17år·<·t·e·z·t·>·b·zæ ´ test ´ re B ´ retestable ´ retestably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åretestablyæ 17år·<·t·e·z·t·>·b·læ ´ test ´ re bl ´ retestables ´ retestableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åretestedæ 15år·<·t·e·z·t·>·dæ ´ test ´ re d ´ retests ´ retester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åretesteræ 15år·<·t·e·z·t·>·ræ ´ test ´ re r ´ retested ´ retesters ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åretestersæ 17år·<·t·e·z·t·>·r·zæ ´ test ´ re R ´ retester ´ retestable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åretestingæ 15år·<·t·e·z·t·>·´æ ´ test ´ re ´ ´ retest ´ retests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åretestsæ 15år·<·t·e·z·t·>·sæ ´ test ´ re s ´ retesting ´ retested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtaughtæ 10åt·e·ch·>·dæ ´ teach ´ · d ´ teaches ´ teacher ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åteachæ 6åt·e·chæ ´ teach ´ · · ´ · ´ teaching ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åteachableæ 10åt·e·ch·>·bæ ´ teach ´ · b ´ teacher ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åteacheræ 10åt·e·ch·>·ræ ´ teach ´ · r ´ taught ´ teachable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åteachesæ 10åt·e·ch·>·sæ ´ teach ´ · s ´ teaching ´ taught ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åteachingæ 10åt·e·ch·>·´æ ´ teach ´ · ´ ´ teach ´ teaches ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4åtestæ 7åt·e·z·tæ ´ test ´ · · ´ · ´ testing ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 13åtestabilitiesæ 15åt·e·z·t·>·b·e·sæ ´ test ´ · bes ´ testability ´ pretest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åtestabilityæ 13åt·e·z·t·>·b·eæ ´ test ´ · be ´ testableness ´ testabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åtestableæ 11åt·e·z·t·>·bæ ´ test ´ · b ´ testers ´ testables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 12åtestablenessæ 13åt·e·z·t·>·b·næ ´ test ´ · bn ´ testably ´ testability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åtestablesæ 13åt·e·z·t·>·b·zæ ´ test ´ · B ´ testable ´ testably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åtestablyæ 13åt·e·z·t·>·b·læ ´ test ´ · bl ´ testables ´ testableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtestedæ 11åt·e·z·t·>·dæ ´ test ´ · d ´ tests ´ tester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtesteræ 11åt·e·z·t·>·ræ ´ test ´ · r ´ tested ´ testers ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åtestersæ 13åt·e·z·t·>·r·zæ ´ test ´ · R ´ tester ´ testable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åtestingæ 11åt·e·z·t·>·´æ ´ test ´ · ´ ´ test ´ tests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åtestsæ 11åt·e·z·t·>·sæ ´ test ´ · s ´ testing ´ tested ´
get ... check entry DICT__entry YDLST_INC s_equal n/a
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -e- add two more words/variations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((02.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - char x_english [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - char x_gregg [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - void *x_base = NULL;
COND add two more words and variations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "weak § · § u·e·k § ¬ § · § ´) weakening § s) weakens § d) weakened § r) weakener § er) weaker § st) weakest § e) weakly § n) weakness § sh) weakish §");
exec call base DICT__base 2 , 5 , x_recd , x_english , x_gregg , &x_base i_equal 0
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "" i_equal 0
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "hope § · § h·o·p § ¬ § · § ´) hoping § s) hopes § d) hoped § +F) hopeful §");
exec call base DICT__base 2 , 7 , x_recd , x_english , x_gregg , &x_base i_equal 0
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "" i_equal 0
get check the counts DICT__count i_equal 59
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -f- verify two more words/variations (e) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND check current bases and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 4
get ... check entry BASE__entry 0 s_equal 0 5åteachæ 0/ 3 6 · · · · 0 · 0 6åt·e·chæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 1 s_equal 1 4åtestæ 1/ 1 36 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 2 s_equal 2 4åweakæ 2/ 5 10 · · · · 0 · 0 5åu·e·kæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 3 s_equal 3 4åhopeæ 2/ 7 7 · · · · 0 · 0 5åh·o·pæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry 4 s_equal n/a
get check the counts DICT__count i_equal 59
get ... check entry DICT__entry 0 s_equal ¬¬¬¬ 4åhopeæ 5åh·o·pæ ´ hope ´ · · ´ · ´ hoping ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åhopedæ 9åh·o·p·>·dæ ´ hope ´ · d ´ hopes ´ hopeful ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åhopefulæ 9åh·o·p·>·fæ ´ hope ´ · f ´ hoped ´ hopefully ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åhopefullyæ 11åh·o·p·>·f·eæ ´ hope ´ · fe ´ hopeful ´ hopefulness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åhopefulnessæ 11åh·o·p·>·f·næ ´ hope ´ · fn ´ hopefully ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åhopesæ 9åh·o·p·>·sæ ´ hope ´ · s ´ hoping ´ hoped ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åhopingæ 9åh·o·p·>·´æ ´ hope ´ · ´ ´ hope ´ hopes ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åpretestæ 11åp·<·t·e·z·tæ ´ test ´ pre · ´ testabilities ´ pretesting ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 16åpretestabilitiesæ 19åp·<·t·e·z·t·>·b·e·sæ ´ test ´ pre bes ´ pretestability ´ retest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 14åpretestabilityæ 17åp·<·t·e·z·t·>·b·eæ ´ test ´ pre be ´ pretestableness ´ pretestabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åpretestableæ 15åp·<·t·e·z·t·>·bæ ´ test ´ pre b ´ pretesters ´ pretestables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 15åpretestablenessæ 17åp·<·t·e·z·t·>·b·næ ´ test ´ pre bn ´ pretestably ´ pretestability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 12åpretestablesæ 17åp·<·t·e·z·t·>·b·zæ ´ test ´ pre B ´ pretestable ´ pretestably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åpretestablyæ 17åp·<·t·e·z·t·>·b·læ ´ test ´ pre bl ´ pretestables ´ pretestableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åpretestedæ 15åp·<·t·e·z·t·>·dæ ´ test ´ pre d ´ pretests ´ pretester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åpretesteræ 15åp·<·t·e·z·t·>·ræ ´ test ´ pre r ´ pretested ´ pretesters ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åpretestersæ 17åp·<·t·e·z·t·>·r·zæ ´ test ´ pre R ´ pretester ´ pretestable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åpretestingæ 15åp·<·t·e·z·t·>·´æ ´ test ´ pre ´ ´ pretest ´ pretests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åpretestsæ 15åp·<·t·e·z·t·>·sæ ´ test ´ pre s ´ pretesting ´ pretested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åretestæ 11år·<·t·e·z·tæ ´ test ´ re · ´ pretestabilities ´ retesting ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 15åretestabilitiesæ 19år·<·t·e·z·t·>·b·e·sæ ´ test ´ re bes ´ retestability ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 13åretestabilityæ 17år·<·t·e·z·t·>·b·eæ ´ test ´ re be ´ retestableness ´ retestabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åretestableæ 15år·<·t·e·z·t·>·bæ ´ test ´ re b ´ retesters ´ retestables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 14åretestablenessæ 17år·<·t·e·z·t·>·b·næ ´ test ´ re bn ´ retestably ´ retestability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åretestablesæ 17år·<·t·e·z·t·>·b·zæ ´ test ´ re B ´ retestable ´ retestably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åretestablyæ 17år·<·t·e·z·t·>·b·læ ´ test ´ re bl ´ retestables ´ retestableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åretestedæ 15år·<·t·e·z·t·>·dæ ´ test ´ re d ´ retests ´ retester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åretesteræ 15år·<·t·e·z·t·>·ræ ´ test ´ re r ´ retested ´ retesters ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åretestersæ 17år·<·t·e·z·t·>·r·zæ ´ test ´ re R ´ retester ´ retestable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åretestingæ 15år·<·t·e·z·t·>·´æ ´ test ´ re ´ ´ retest ´ retests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åretestsæ 15år·<·t·e·z·t·>·sæ ´ test ´ re s ´ retesting ´ retested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtaughtæ 10åt·e·ch·>·dæ ´ teach ´ · d ´ teaches ´ teacher ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åteachæ 6åt·e·chæ ´ teach ´ · · ´ · ´ teaching ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åteachableæ 10åt·e·ch·>·bæ ´ teach ´ · b ´ teacher ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åteacheræ 10åt·e·ch·>·ræ ´ teach ´ · r ´ taught ´ teachable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åteachesæ 10åt·e·ch·>·sæ ´ teach ´ · s ´ teaching ´ taught ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åteachingæ 10åt·e·ch·>·´æ ´ teach ´ · ´ ´ teach ´ teaches ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4åtestæ 7åt·e·z·tæ ´ test ´ · · ´ · ´ testing ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 13åtestabilitiesæ 15åt·e·z·t·>·b·e·sæ ´ test ´ · bes ´ testability ´ pretest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åtestabilityæ 13åt·e·z·t·>·b·eæ ´ test ´ · be ´ testableness ´ testabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åtestableæ 11åt·e·z·t·>·bæ ´ test ´ · b ´ testers ´ testables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 12åtestablenessæ 13åt·e·z·t·>·b·næ ´ test ´ · bn ´ testably ´ testability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åtestablesæ 13åt·e·z·t·>·b·zæ ´ test ´ · B ´ testable ´ testably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åtestablyæ 13åt·e·z·t·>·b·læ ´ test ´ · bl ´ testables ´ testableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtestedæ 11åt·e·z·t·>·dæ ´ test ´ · d ´ tests ´ tester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtesteræ 11åt·e·z·t·>·ræ ´ test ´ · r ´ tested ´ testers ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åtestersæ 13åt·e·z·t·>·r·zæ ´ test ´ · R ´ tester ´ testable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åtestingæ 11åt·e·z·t·>·´æ ´ test ´ · ´ ´ test ´ tests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åtestsæ 11åt·e·z·t·>·sæ ´ test ´ · s ´ testing ´ tested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4åweakæ 5åu·e·kæ ´ weak ´ · · ´ · ´ weakening ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åweakenedæ 9åu·e·k·>·dæ ´ weak ´ · d ´ weakens ´ weakener ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åweakeneræ 9åu·e·k·>·ræ ´ weak ´ · r ´ weakened ´ weaker ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åweakeningæ 9åu·e·k·>·´æ ´ weak ´ · ´ ´ weak ´ weakens ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åweakensæ 9åu·e·k·>·sæ ´ weak ´ · s ´ weakening ´ weakened ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åweakeræ 11åu·e·k·>·e·ræ ´ weak ´ · er ´ weakener ´ weakest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åweakestæ 11åu·e·k·>·s·tæ ´ weak ´ · st ´ weaker ´ weakly ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åweakishæ 10åu·e·k·>·shæ ´ weak ´ · sh ´ weakness ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åweaklyæ 9åu·e·k·>·eæ ´ weak ´ · e ´ weakest ´ weakness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åweaknessæ 9åu·e·k·>·næ ´ weak ´ · n ´ weakly ´ weakish ´
get ... check entry DICT__entry YDLST_INC s_equal n/a
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -g- add final words/variations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((02.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_recd [LEN_RECD] = "";
local create working/return variable - - - - - - - - - - - - - char x_english [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - char x_gregg [LEN_TITLE] = "";
local create working/return variable - - - - - - - - - - - - - void *x_base = NULL;
COND add two more words and variations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "draw § · § d·r·o § ¬ § · §´) drawing § s) draws § d) drew § r) drawer §");
exec call base DICT__base 3 , 10 , x_recd , x_english , x_gregg , &x_base i_equal 0
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "" i_equal 0
code ... update recd - - - - - - - - - - - - - strcpy (x_recd, "loan § · § l·o·n § ¬ § · §´) loaning § s) loans § d) loaned § r) loaner §");
exec call base DICT__base 3 , 13 , x_recd , x_english , x_gregg , &x_base i_equal 0
exec call prefixes DICT__prefixes x_base , x_english , x_gregg , "" i_equal 0
get check the counts DICT__count i_equal 69
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -h- verify final words/variations (g) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND check current bases and dictionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get ... check count BASE__count i_equal 6
get ... check entry BASE__entry 0 s_equal ¬¬¬¬ 5åteachæ 0/ 3 6 · · · · 0 · 0 6åt·e·chæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry YDLST_INC s_equal ¬¬¬¬ 4åtestæ 1/ 1 36 · · · · 0 · 0 7åt·e·z·tæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry YDLST_INC s_equal ¬¬¬¬ 4ådrawæ 3/ 10 5 · · · · 0 · 0 5åd·r·oæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry YDLST_INC s_equal ¬¬¬¬ 4åloanæ 3/ 13 5 · · · · 0 · 0 5ål·o·næ ¬¬¬¬¬¬¬
get ... check entry BASE__entry YDLST_INC s_equal ¬¬¬¬ 4åweakæ 2/ 5 10 · · · · 0 · 0 5åu·e·kæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry YDLST_INC s_equal ¬¬¬¬ 4åhopeæ 2/ 7 7 · · · · 0 · 0 5åh·o·pæ ¬¬¬¬¬¬¬
get ... check entry BASE__entry YDLST_INC s_equal n/a
get check the counts DICT__count i_equal 69
get ... check entry DICT__entry 0 s_equal ¬¬¬¬ 4ådrawæ 5åd·r·oæ ´ draw ´ · · ´ · ´ drawing ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6ådraweræ 9åd·r·o·>·ræ ´ draw ´ · r ´ drew ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7ådrawingæ 9åd·r·o·>·´æ ´ draw ´ · ´ ´ draw ´ draws ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5ådrawsæ 9åd·r·o·>·sæ ´ draw ´ · s ´ drawing ´ drew ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4ådrewæ 9åd·r·o·>·dæ ´ draw ´ · d ´ draws ´ drawer ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4åhopeæ 5åh·o·pæ ´ hope ´ · · ´ · ´ hoping ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åhopedæ 9åh·o·p·>·dæ ´ hope ´ · d ´ hopes ´ hopeful ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åhopefulæ 9åh·o·p·>·fæ ´ hope ´ · f ´ hoped ´ hopefully ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åhopefullyæ 11åh·o·p·>·f·eæ ´ hope ´ · fe ´ hopeful ´ hopefulness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åhopefulnessæ 11åh·o·p·>·f·næ ´ hope ´ · fn ´ hopefully ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åhopesæ 9åh·o·p·>·sæ ´ hope ´ · s ´ hoping ´ hoped ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åhopingæ 9åh·o·p·>·´æ ´ hope ´ · ´ ´ hope ´ hopes ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4åloanæ 5ål·o·næ ´ loan ´ · · ´ · ´ loaning ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åloanedæ 9ål·o·n·>·dæ ´ loan ´ · d ´ loans ´ loaner ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åloaneræ 9ål·o·n·>·ræ ´ loan ´ · r ´ loaned ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åloaningæ 9ål·o·n·>·´æ ´ loan ´ · ´ ´ loan ´ loans ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åloansæ 9ål·o·n·>·sæ ´ loan ´ · s ´ loaning ´ loaned ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åpretestæ 11åp·<·t·e·z·tæ ´ test ´ pre · ´ testabilities ´ pretesting ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 16åpretestabilitiesæ 19åp·<·t·e·z·t·>·b·e·sæ ´ test ´ pre bes ´ pretestability ´ retest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 14åpretestabilityæ 17åp·<·t·e·z·t·>·b·eæ ´ test ´ pre be ´ pretestableness ´ pretestabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åpretestableæ 15åp·<·t·e·z·t·>·bæ ´ test ´ pre b ´ pretesters ´ pretestables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 15åpretestablenessæ 17åp·<·t·e·z·t·>·b·næ ´ test ´ pre bn ´ pretestably ´ pretestability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 12åpretestablesæ 17åp·<·t·e·z·t·>·b·zæ ´ test ´ pre B ´ pretestable ´ pretestably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åpretestablyæ 17åp·<·t·e·z·t·>·b·læ ´ test ´ pre bl ´ pretestables ´ pretestableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åpretestedæ 15åp·<·t·e·z·t·>·dæ ´ test ´ pre d ´ pretests ´ pretester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åpretesteræ 15åp·<·t·e·z·t·>·ræ ´ test ´ pre r ´ pretested ´ pretesters ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åpretestersæ 17åp·<·t·e·z·t·>·r·zæ ´ test ´ pre R ´ pretester ´ pretestable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åpretestingæ 15åp·<·t·e·z·t·>·´æ ´ test ´ pre ´ ´ pretest ´ pretests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åpretestsæ 15åp·<·t·e·z·t·>·sæ ´ test ´ pre s ´ pretesting ´ pretested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åretestæ 11år·<·t·e·z·tæ ´ test ´ re · ´ pretestabilities ´ retesting ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 15åretestabilitiesæ 19år·<·t·e·z·t·>·b·e·sæ ´ test ´ re bes ´ retestability ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 13åretestabilityæ 17år·<·t·e·z·t·>·b·eæ ´ test ´ re be ´ retestableness ´ retestabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åretestableæ 15år·<·t·e·z·t·>·bæ ´ test ´ re b ´ retesters ´ retestables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 14åretestablenessæ 17år·<·t·e·z·t·>·b·næ ´ test ´ re bn ´ retestably ´ retestability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åretestablesæ 17år·<·t·e·z·t·>·b·zæ ´ test ´ re B ´ retestable ´ retestably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 10åretestablyæ 17år·<·t·e·z·t·>·b·læ ´ test ´ re bl ´ retestables ´ retestableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åretestedæ 15år·<·t·e·z·t·>·dæ ´ test ´ re d ´ retests ´ retester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åretesteræ 15år·<·t·e·z·t·>·ræ ´ test ´ re r ´ retested ´ retesters ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åretestersæ 17år·<·t·e·z·t·>·r·zæ ´ test ´ re R ´ retester ´ retestable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åretestingæ 15år·<·t·e·z·t·>·´æ ´ test ´ re ´ ´ retest ´ retests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åretestsæ 15år·<·t·e·z·t·>·sæ ´ test ´ re s ´ retesting ´ retested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtaughtæ 10åt·e·ch·>·dæ ´ teach ´ · d ´ teaches ´ teacher ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åteachæ 6åt·e·chæ ´ teach ´ · · ´ · ´ teaching ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åteachableæ 10åt·e·ch·>·bæ ´ teach ´ · b ´ teacher ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åteacheræ 10åt·e·ch·>·ræ ´ teach ´ · r ´ taught ´ teachable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åteachesæ 10åt·e·ch·>·sæ ´ teach ´ · s ´ teaching ´ taught ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åteachingæ 10åt·e·ch·>·´æ ´ teach ´ · ´ ´ teach ´ teaches ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4åtestæ 7åt·e·z·tæ ´ test ´ · · ´ · ´ testing ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 13åtestabilitiesæ 15åt·e·z·t·>·b·e·sæ ´ test ´ · bes ´ testability ´ pretest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 11åtestabilityæ 13åt·e·z·t·>·b·eæ ´ test ´ · be ´ testableness ´ testabilities ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åtestableæ 11åt·e·z·t·>·bæ ´ test ´ · b ´ testers ´ testables ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 12åtestablenessæ 13åt·e·z·t·>·b·næ ´ test ´ · bn ´ testably ´ testability ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åtestablesæ 13åt·e·z·t·>·b·zæ ´ test ´ · B ´ testable ´ testably ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åtestablyæ 13åt·e·z·t·>·b·læ ´ test ´ · bl ´ testables ´ testableness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtestedæ 11åt·e·z·t·>·dæ ´ test ´ · d ´ tests ´ tester ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åtesteræ 11åt·e·z·t·>·ræ ´ test ´ · r ´ tested ´ testers ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åtestersæ 13åt·e·z·t·>·r·zæ ´ test ´ · R ´ tester ´ testable ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åtestingæ 11åt·e·z·t·>·´æ ´ test ´ · ´ ´ test ´ tests ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 5åtestsæ 11åt·e·z·t·>·sæ ´ test ´ · s ´ testing ´ tested ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 4åweakæ 5åu·e·kæ ´ weak ´ · · ´ · ´ weakening ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åweakenedæ 9åu·e·k·>·dæ ´ weak ´ · d ´ weakens ´ weakener ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åweakeneræ 9åu·e·k·>·ræ ´ weak ´ · r ´ weakened ´ weaker ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 9åweakeningæ 9åu·e·k·>·´æ ´ weak ´ · ´ ´ weak ´ weakens ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åweakensæ 9åu·e·k·>·sæ ´ weak ´ · s ´ weakening ´ weakened ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åweakeræ 11åu·e·k·>·e·ræ ´ weak ´ · er ´ weakener ´ weakest ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åweakestæ 11åu·e·k·>·s·tæ ´ weak ´ · st ´ weaker ´ weakly ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 7åweakishæ 10åu·e·k·>·shæ ´ weak ´ · sh ´ weakness ´ · ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 6åweaklyæ 9åu·e·k·>·eæ ´ weak ´ · e ´ weakest ´ weakness ´
get ... check entry DICT__entry YDLST_INC s_equal ¬¬¬¬ 8åweaknessæ 9åu·e·k·>·næ ´ weak ´ · n ´ weakly ´ weakish ´
get ... check entry DICT__entry YDLST_INC s_equal n/a
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -i- create first import file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND make sure to purge existing entries - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_name [LEN_TITLE] = "";
COND add file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - strcpy (x_name, "/tmp/import_1.dict");
exec create empty file yURG_touch x_name , "root" , "root" , "0600" i_equal 0
file read for writing - - - - - - - - - - - - - [[ x_name ]]
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - #--english---------- § ------arpabet------- § -------gregg-------- § --------cat-------- § ------revised------- § -----continuous----- § ---present/plural--- § -------past--------- § ------doer---------- § -) variation-------1 § -) variation-------2 § -) variation-------3 § -) variation-------4 § -) variation-------5 § -) variation-------6 ¼ ---prefixes--------------------------------------------------------------------- ¨ ---description/explanation------------------------------------------------------ §
append ... add a record - - - - - - - - - - - - - teach § · § t·e·ch § ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬ § · § ´) teaching § s) teaches § d) taught § r) teacher § b) teachable §
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - # end-of-file. done, finito, completare, whimper [Ï´···
exec verify file size yURG_peek_count x_name i_equal 6
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -j- create second import file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND make sure to purge existing entries - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_name [LEN_TITLE] = "";
COND add file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - strcpy (x_name, "/tmp/import_2.dict");
exec create empty file yURG_touch x_name , "root" , "root" , "0600" i_equal 0
file read for writing - - - - - - - - - - - - - [[ x_name ]]
append ... add a record - - - - - - - - - - - - - test § · § t·e·z·t § ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬ § · § ´) testing § s) tests § d) tested § § /) www § R) tester § +B) testable § ¼ ´,pre,re
exec verify file size yURG_peek_count x_name i_equal 1
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -k- create third import file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND make sure to purge existing entries - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_name [LEN_TITLE] = "";
COND add file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - strcpy (x_name, "/tmp/import_3.dict");
exec create empty file yURG_touch x_name , "root" , "root" , "0600" i_equal 0
file read for writing - - - - - - - - - - - - - [[ x_name ]]
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - #--english---------- § ------arpabet------- § -------gregg-------- § --------cat-------- § ------revised------- § -----continuous----- § ---present/plural--- § -------past--------- § ------doer---------- § -) variation-------1 § -) variation-------2 § -) variation-------3 § -) variation-------4 § -) variation-------5 § -) variation-------6 ¼ ---prefixes--------------------------------------------------------------------- ¨ ---description/explanation------------------------------------------------------ §
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - #··················· ´ ···················· ´ ···················· ´ ··················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ···················· ´ ···················· ´ ····················]³[················································································ ´ ················································································ ´
append ... add a record - - - - - - - - - - - - - weak § · § u·e·k § ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬ § · § ´) weakening § s) weakens § d) weakened § r) weakener § er) weaker § st) weakest § e) weakly § n) weakness § sh) weakish §
append ... add a record - - - - - - - - - - - - - #··················· ´ ···················· ´ ···················· ´ ··················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ···················· ´ ···················· ´ ····················]³[················································································ ´ ················································································ ´
append ... add a record - - - - - - - - - - - - - hope § · § h·o·p § ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬ § · § ´) hoping § s) hopes § d) hoped § +F) hopeful §
append ... add a record - - - - - - - - - - - - - #··················· ´ ···················· ´ ···················· ´ ··················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ···················· ´ ···················· ´ ····················]³[················································································ ´ ················································································ ´
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - # end-of-file. done, finito, completare, whimper [Ï´···
exec verify file size yURG_peek_count x_name i_equal 10
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
SHARED -l- create fourth import file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND make sure to purge existing entries - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - char x_name [LEN_TITLE] = "";
COND add file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
local create working/return variable - - - - - - - - - - - - - strcpy (x_name, "/tmp/import_4.dict");
exec create empty file yURG_touch x_name , "root" , "root" , "0600" i_equal 0
file read for writing - - - - - - - - - - - - - [[ x_name ]]
append ... add a record - - - - - - - - - - - - - ## weird header line
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - #--english---------- § ------arpabet------- § -------gregg-------- § --------cat-------- § ------revised------- § -----continuous----- § ---present/plural--- § -------past--------- § ------doer---------- § -) variation-------1 § -) variation-------2 § -) variation-------3 § -) variation-------4 § -) variation-------5 § -) variation-------6 ¼ ---prefixes--------------------------------------------------------------------- ¨ ---description/explanation------------------------------------------------------ §
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - #··················· ´ ···················· ´ ···················· ´ ··················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ····················]³[···················· ´ ···················· ´ ···················· ´ ···················· ´ ···················· ´ ····················]³[················································································ ´ ················································································ ´
append ... add a record - - - - - - - - - - - - - draw § · § d·r·o § ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬ § · § ´) drawing § s) draws § d) drew § r) drawer §
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - loan § · § l·o·n § ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬ § · § ´) loaning § s) loans § d) loaned § r) loaner §
append ... add a record - - - - - - - - - - - - -
append ... add a record - - - - - - - - - - - - - # end-of-file. done, finito, completare, whimper [Ï´···
exec verify file size yURG_peek_count x_name i_equal 15
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= ========(var)=======
SCRP (DICT) verify searching for dictionary words 0s search DICT__by_english, DICT__by_index, DICT__by_count ((02.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND initialize the testing environment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((02.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec start testing PROG__unit_quiet i_equal 0
local create working/return variable - - - - - - - - - - - - - tDICT *x_curr = NULL;
REUSE -A- add a standard letter table - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -B- verify the letters are loaded - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -C- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -D- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -E- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -F- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND verify searching on a empty database - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call english DICT__by_english "testing" , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call index DICT__by_index 0 , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call cursor DICT__by_cursor YDLST_HEAD , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
REUSE -a- single word/variations base sample - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -b- single word/variations base sample - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND verify searching by english - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call english DICT__by_english "teach" , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åteachæ
exec call english DICT__by_english "testing" , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call english DICT__by_english "taught" , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åtaughtæ
exec call english DICT__by_english "drew" , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call english DICT__by_english "hope" , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call english DICT__by_english "pretestable" , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
COND verify searching by index - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call index DICT__by_index 0 , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åtaughtæ
exec call index DICT__by_index 16 , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call index DICT__by_index 32 , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call index DICT__by_index 48 , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call index DICT__by_index 64 , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call index DICT__by_index 80 , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
COND verify searching by cursor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((01.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec call cursor DICT__by_cursor YDLST_HEAD , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åtaughtæ
exec call cursor DICT__by_cursor YDLST_PREV , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call cursor DICT__by_cursor YDLST_NEXT , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åteachæ
exec call cursor DICT__by_cursor YDLST_NEXT , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åteachableæ
exec call cursor DICT__by_cursor YDLST_TAIL , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åteachingæ
exec call cursor DICT__by_cursor YDLST_NEXT , &x_curr i_lesser 0
echo ... check pointer - - - - - - - - - - - - - x_curr p_null 0
exec call cursor DICT__by_cursor YDLST_PREV , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åteachesæ
exec call cursor DICT__by_cursor YDLST_PREV , &x_curr i_equal 0
echo ... check pointer - - - - - - - - - - - - - x_curr->d_english w_equal åteacheræ
REUSE -c- add word/variations with prefxi-suffix - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REUSE -d- add word/variations with prefxi-suffix - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -