-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathQALog
2109 lines (1832 loc) · 67 KB
/
QALog
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
Quality Assurance Log
=====================
The file for developer's own quality management.
Checkpoints
-----------
- Specification conformance check by eyes
Whether conforms to the expected specification (R5RS, SRFI, or
SigScheme-local specs such as SAL).
- Specification conformance check by tests
Ensure the conformance by tests.
- General code review (logic, structure, meaning, validity etc)
- 64-bit data model capability check by eyes
Whether the codes are capable of LL64(ILP32), LP64, LLP64 and ILP64.
- 64-bit data model capability check by tests
Ensure the capability by tests.
- Coding style check (doc/style.txt)
Don't forget checking duplicate evaluation of side-effective expression on
macro invocations.
- Normal case tests
- Corner case tests
Format and Examples
-------------------
- Free format log
Record significant achievements to 'Log' section in ChangeLog format
2006-06-06 YamaKen <yamaken AT bp.iij4u.or.jp>
* general code review for all core files
- Status record template
file:
category:
spec by eyes:
spec by tests:
general review:
64-bit by eyes:
64-bit by tests:
coding style:
normal case tests:
corner case tests:
* The unit for status recording is file. Check all functions in a file at a
time
* category = (base|core|semicore|r5rs|srfi|opt|ext|other)
* record comma separated username@revision for each checkpoints
* don't overwrite per-user checkpoints. i.e. record as "yamaken@r3499,
yamaken@r3670" instead of recording latest "yamaken@r3670" only
* don't fold each line
* '-' means "unneeded"
* blank field means "unchecked"
- Examples
file: scmint.h
category: base
spec by eyes: -
spec by tests: -
general review: yamaken@r3499, ekato@r3499
64-bit by eyes: yamaken@r3499, ekato@r3499
64-bit by tests:
coding style: yamaken@r3499
normal case tests:
corner case tests:
file: syntax.c
category: r5rs
spec by eyes: yamaken@r3499, yamaken@r3670
spec by tests:
general review: yamaken@r3499
64-bit by eyes: yamaken@r3499
64-bit by tests: -
coding style: yamaken@r3499
normal case tests:
corner case tests:
Categorized File List
---------------------
- SigScheme-independent base libraries (base)
* scmint.h
* scmport.h
* scmport-config.h
* scmport-null.h
* scmport-null.c
* scmport-file.c
* scmport-file.h
* scmport-str.h
* scmport-str.c
* scmport-basechar.c
* scmport-sbchar.h
* scmport-sbchar.c
* scmport-mbchar.h
* scmport-mbchar.c
* encoding.h
* encoding-dummy.h
* encoding-config.h
* encoding.c
* global.h
* global-aggregated.c
- Core (core)
* config-old.h
* sigscheme.h
* sigschemeinternal.h
* storage-common.h
* storage-fatty.h
* storage-compact.h
* storage.c
* storage-gc.c
* gcroots.h
* gcroots.c
* strcasecmp.c
* alloc.c
* error.c
* env.c
* symbol.c
* continuation.c
* eval.c
* module.c
* sigscheme.c
- Semi-core (semicore)
* port.c
* read.c
* write.c
* load.c
* format.c
- R5RS Syntaxes and Procedures (r5rs)
* syntax.c
* procedure.c
* number.c
* number-io.c
* list.c
* deep-cadrs.c
* char.c
* string.c
* string-procedure.c
* vector.c
* qquote.c
* macro.c
* promise.c
- SRFIs (srfi)
* module-srfi1.c
* module-srfi2.c
* module-srfi6.c
* module-srfi8.c
* module-srfi9.c
* module-srfi23.c
* module-srfi28.c
* module-srfi34.c
* module-srfi38.c
* module-srfi43.c
* module-srfi48.c
* module-srfi55.c
* module-srfi60.c
- Optional Features (opt)
* legacy-macro.c
* module-sscm-ext.c
* module-siod.c
- Others (other)
* main.c
* sigscheme-combined.h
* dllentry.c
Status Summary
--------------
$ tools/summarize_quality.rb QALog
----------------------------------------------------------------
+-------- specification conformance check by eyes
|+------- specification conformance check by tests
||+------ general code review (logic, structure, meaning, validity etc)
|||+----- 64-bit data model capability check by eyes
||||+---- 64-bit data model capability check by tests
|||||+--- coding style check (doc/style.txt)
||||||+-- normal case tests
|||||||+- corner case tests
||||||||
y yy y base scmint.h
y yy y base scmport.h
y yy y base scmport-config.h
y yy y base scmport-null.h
y yy y base scmport-null.c
y yy y base scmport-file.c
y yy y base scmport-file.h
y yy y base scmport-str.h
y yy y base scmport-str.c
y yy y base scmport-basechar.c
y yy y base scmport-sbchar.h
y yy y base scmport-sbchar.c
y yy y base scmport-mbchar.h
y yy y base scmport-mbchar.c
y yy y base encoding.h
y yy y base encoding-dummy.h
y yy y base encoding-config.h
y yy y base encoding.c
y yy yy base global.h
y yy y base global-aggregated.c
y yy y core config-old.h
y yy y core sigscheme.h
y yy y core sigschemeinternal.h
y yy y core storage-common.h
y yy y core storage-fatty.h
y yy yy core storage-compact.h
y yy y core storage.c
y yy y core storage-gc.c
y yy yy core gcroots.h
y yy yy core gcroots.c
yyyy yyy core strcasecmp.c
y yy y core alloc.c
y yy y core error.c
y yy y core env.c
y yy y core symbol.c
yyyy yyy core continuation.c
yyyy yyy core eval.c
y yy y core module.c
y yy y core sigscheme.c
y yy y semicore port.c
yyyy yyy semicore read.c
y yy y semicore write.c
y yy y semicore load.c
yyyyyyyy semicore format.c
yyyy yyy r5rs syntax.c
yyyy yyy r5rs procedure.c
yyyyyyyy r5rs number.c
yyyyyyyy r5rs number-io.c
yyyy yyy r5rs list.c
yyyy yyy r5rs deep-cadrs.c
yyyy yy r5rs char.c
yyyy yyy r5rs string.c
yyyy yy r5rs string-procedure.c
yyyy yyy r5rs vector.c
yyyy yyy r5rs qquote.c
r5rs macro.c
yyyy yy r5rs promise.c
yyyy yyy srfi module-srfi1.c
yyyy yyy srfi module-srfi2.c
yyyy yyy srfi module-srfi6.c
yyyy yyy srfi module-srfi8.c
yyyy yyy srfi module-srfi9.c
yyyy yy srfi module-srfi23.c
yyyy yyy srfi module-srfi28.c
yyyy yyy srfi module-srfi34.c
yyyy yyy srfi module-srfi38.c
yyyy yyy srfi module-srfi43.c
yyyy yyy srfi module-srfi48.c
yyyy yy srfi module-srfi55.c
yyyyyyyy srfi module-srfi60.c
yyyy yyy opt legacy-macro.c
y yy y opt module-sscm-ext.c
y yy y opt module-siod.c
other main.c
y yy y other sigscheme-combined.h
other dllentry.c
----------------------------------------------------------------
Status
------
file: scmint.h
category: base
spec by eyes: yamaken@r3961, yamaken@r3992, yamaken@r4134
spec by tests:
general review: yamaken@r3961
64-bit by eyes: yamaken@r3961, yamaken@r4134
64-bit by tests:
coding style: yamaken@r3961
normal case tests:
corner case tests:
file: scmport.h
category: base
spec by eyes: yamaken@r3963, yamaken@r3992, yamaken@r3999, yamaken@r4138
spec by tests:
general review: yamaken@r3963, yamaken@r3992
64-bit by eyes: yamaken@r3963, yamaken@r3992
64-bit by tests:
coding style: yamaken@r3963, yamaken@r3992
normal case tests:
corner case tests:
file: scmport-config.h
category: base
spec by eyes: yamaken@r3963
spec by tests:
general review: yamaken@r3963
64-bit by eyes: yamaken@r3963
64-bit by tests:
coding style: yamaken@r3963
normal case tests:
corner case tests:
file: scmport-null.h
category: base
spec by eyes: yamaken@r3963
spec by tests:
general review: yamaken@r3963
64-bit by eyes: yamaken@r3963
64-bit by tests:
coding style: yamaken@r3963
normal case tests:
corner case tests:
file: scmport-null.c
category: base
spec by eyes: yamaken@r3963, yamaken@r3992, yamaken@r4068
spec by tests:
general review: yamaken@r3963, yamaken@r3992
64-bit by eyes: yamaken@r3963, yamaken@r3992
64-bit by tests:
coding style: yamaken@r3963, yamaken@r3992
normal case tests:
corner case tests:
file: scmport-file.c
category: base
spec by eyes: yamaken@r3963, yamaken@r3992, yamaken@r4068
spec by tests:
general review: yamaken@r3963, yamaken@r3992
64-bit by eyes: yamaken@r3963, yamaken@r3992
64-bit by tests:
coding style: yamaken@r3963, yamaken@r3992
normal case tests:
corner case tests:
file: scmport-file.h
category: base
spec by eyes: yamaken@r3963, yamaken@r4068
spec by tests:
general review: yamaken@r3963
64-bit by eyes: yamaken@r3963
64-bit by tests:
coding style: yamaken@r3963
normal case tests:
corner case tests:
file: scmport-str.h
category: base
spec by eyes: yamaken@r3963
spec by tests:
general review: yamaken@r3963
64-bit by eyes: yamaken@r3963
64-bit by tests:
coding style: yamaken@r3963
normal case tests:
corner case tests:
file: scmport-str.c
category: base
spec by eyes: yamaken@r3963, yamaken@r3992, yamaken@r4068, yamaken@r4298
spec by tests:
general review: yamaken@r3963, yamaken@r3992
64-bit by eyes: yamaken@r3963, yamaken@r3992
64-bit by tests:
coding style: yamaken@r3963, yamaken@r3992
normal case tests:
corner case tests:
file: scmport-basechar.c
category: base
spec by eyes: yamaken@r3963, yamaken@r3992, yamaken@r4068
spec by tests:
general review: yamaken@r3963, yamaken@r3992
64-bit by eyes: yamaken@r3963, yamaken@r3992
64-bit by tests:
coding style: yamaken@r3963, yamaken@r3992
normal case tests:
corner case tests:
file: scmport-sbchar.h
category: base
spec by eyes: yamaken@r3963
spec by tests:
general review: yamaken@r3963
64-bit by eyes: yamaken@r3963
64-bit by tests:
coding style: yamaken@r3963
normal case tests:
corner case tests:
file: scmport-sbchar.c
category: base
spec by eyes: yamaken@r3963, yamaken@r3992, yamaken@r3999, yamaken@r4060, yamaken@r4068
spec by tests:
general review: yamaken@r3963, yamaken@r3992
64-bit by eyes: yamaken@r3963, yamaken@r3992
64-bit by tests:
coding style: yamaken@r3963, yamaken@r3992
normal case tests:
corner case tests:
file: scmport-mbchar.h
category: base
spec by eyes: yamaken@r4528
spec by tests:
general review: yamaken@r4528
64-bit by eyes: yamaken@r4528
64-bit by tests:
coding style: yamaken@r4528
normal case tests:
corner case tests:
file: scmport-mbchar.c
category: base
spec by eyes: yamaken@r4528
spec by tests:
general review: yamaken@r4528
64-bit by eyes: yamaken@r4528
64-bit by tests:
coding style: yamaken@r4528
normal case tests:
corner case tests:
file: encoding.h
category: base
spec by eyes: yamaken@r4527
spec by tests:
general review: yamaken@r4527
64-bit by eyes: yamaken@r4527
64-bit by tests:
coding style: yamaken@r4527
normal case tests:
corner case tests:
file: encoding-dummy.h
category: base
spec by eyes: yamaken@r4067
spec by tests:
general review: yamaken@r4067
64-bit by eyes: yamaken@r4067
64-bit by tests:
coding style: yamaken@r4067
normal case tests:
corner case tests:
file: encoding-config.h
category: base
spec by eyes: yamaken@r4527
spec by tests:
general review: yamaken@r4527
64-bit by eyes: yamaken@r4527
64-bit by tests:
coding style: yamaken@r4527
normal case tests:
corner case tests:
file: encoding.c
category: base
spec by eyes: yamaken@r4527, yamaken@r4585
spec by tests:
general review: yamaken@r4527
64-bit by eyes: yamaken@r4527
64-bit by tests:
coding style: yamaken@r4527
normal case tests:
corner case tests:
file: global.h
category: base
spec by eyes: yamaken@r4060, yamaken@r4175
spec by tests:
general review: yamaken@r4060
64-bit by eyes: yamaken@r4060
64-bit by tests:
coding style: yamaken@r4060
normal case tests: yamaken@r4103
corner case tests:
file: global-aggregated.c
category: base
spec by eyes: yamaken@r4060
spec by tests:
general review: yamaken@r4060
64-bit by eyes: yamaken@r4060
64-bit by tests:
coding style: yamaken@r4060
normal case tests:
corner case tests:
file: config-old.h
category: core
spec by eyes: yamaken@r4145
spec by tests:
general review: yamaken@r4145
64-bit by eyes: yamaken@r4145
64-bit by tests:
coding style: yamaken@r4145
normal case tests:
corner case tests:
file: sigscheme.h
category: core
spec by eyes: yamaken@r4061, yamaken@r4103, yamaken@r4110, yamaken@r4111, yamaken@r4138, yamaken@r4152, yamaken@r4182
spec by tests:
general review: yamaken@r4061
64-bit by eyes: yamaken@r4061
64-bit by tests:
coding style: yamaken@r4061
normal case tests:
corner case tests:
file: sigschemeinternal.h
category: core
spec by eyes: yamaken@r4061, yamaken@r4101, yamaken@r4103, yamaken@r4152, yamaken@r4550
spec by tests:
general review: yamaken@r4061
64-bit by eyes: yamaken@r4061
64-bit by tests:
coding style: yamaken@r4061
normal case tests:
corner case tests:
file: storage-common.h
category: core
spec by eyes: yamaken@r4066, yamaken@r4108, yamaken@r4152, yamaken@r4809
spec by tests:
general review: yamaken@r4066
64-bit by eyes: yamaken@r4066
64-bit by tests:
coding style: yamaken@r4066
normal case tests:
corner case tests:
file: storage-fatty.h
category: core
spec by eyes: yamaken@r4066, yamaken@r4108, yamaken@r4127, yamaken@r4809
spec by tests:
general review: yamaken@r4066
64-bit by eyes: yamaken@r4066
64-bit by tests:
coding style: yamaken@r4066
normal case tests:
corner case tests:
file: storage-compact.h
category: core
spec by eyes: yamaken@r4103, yamaken@r4123, yamaken@r4135, yamaken@r4809
spec by tests:
general review: yamaken@r4103
64-bit by eyes: yamaken@r4103, yamaken@r4135
64-bit by tests:
coding style: yamaken@r4103
normal case tests: yamaken@r4103, yamaken@r4123, yamaken@r4135, yamaken@r4809
corner case tests:
file: storage.c
category: core
spec by eyes: yamaken@r4066, yamaken@r4152, yamaken@r4809
spec by tests:
general review: yamaken@r4066
64-bit by eyes: yamaken@r4066
64-bit by tests:
coding style: yamaken@r4066
normal case tests:
corner case tests:
file: storage-gc.c
category: core
spec by eyes: yamaken@r4066, yamaken@r4101, yamaken@r4108, yamaken@r4110, yamaken@r4111, yamaken@r4152, yamaken@r4182, yamaken@r4515, yamaken@r4809
spec by tests:
general review: yamaken@r4066
64-bit by eyes: yamaken@r4066
64-bit by tests:
coding style: yamaken@r4066
normal case tests:
corner case tests:
file: gcroots.h
category: core
spec by eyes: yamaken@r4203, yamaken@r4734
spec by tests:
general review: yamaken@r4203, yamaken@r4734
64-bit by eyes: yamaken@r4203, yamaken@r4734
64-bit by tests:
coding style: yamaken@r4203, yamaken@r4734
normal case tests: yamaken@r4203
corner case tests:
file: gcroots.c
category: core
spec by eyes: yamaken@r4203, yamaken@r4734
spec by tests:
general review: yamaken@r4203, yamaken@r4734
64-bit by eyes: yamaken@r4203, yamaken@r4734
64-bit by tests:
coding style: yamaken@r4203, yamaken@r4734
normal case tests: yamaken@r4203
corner case tests:
file: strcasecmp.c
category: core
spec by eyes: yamaken@r4053
spec by tests: yamaken@r4053
general review: yamaken@r4053
64-bit by eyes: yamaken@r4053
64-bit by tests:
coding style: yamaken@r4053
normal case tests: yamaken@r4053
corner case tests: yamaken@r4053
file: alloc.c
category: core
spec by eyes: yamaken@r3945
spec by tests:
general review: yamaken@r3945
64-bit by eyes: yamaken@r3945
64-bit by tests:
coding style: yamaken@r3945
normal case tests:
corner case tests:
file: error.c
category: core
spec by eyes: yamaken@r3950, yamaken@r4062, yamaken@r4152
spec by tests:
general review: yamaken@r3950
64-bit by eyes: yamaken@r3950
64-bit by tests:
coding style: yamaken@r3950
normal case tests:
corner case tests:
file: env.c
category: core
spec by eyes: yamaken@r3946, yamaken@r4613
spec by tests:
general review: yamaken@r3946
64-bit by eyes: yamaken@r3946
64-bit by tests:
coding style: yamaken@r3946
normal case tests:
corner case tests:
file: symbol.c
category: core
spec by eyes: yamaken@r3947
spec by tests:
general review: yamaken@r3947
64-bit by eyes: yamaken@r3947
64-bit by tests:
coding style: yamaken@r3947
normal case tests:
corner case tests:
file: continuation.c
category: core
spec by eyes: yamaken@r3880, yamaken@r4138, yamaken@r4603, yamaken@r4893
spec by tests: yamaken@r3880, yamaken@r4076, yamaken@r4603
general review: yamaken@r3880
64-bit by eyes: yamaken@r3880
64-bit by tests:
coding style: yamaken@r3880
normal case tests: yamaken@r3880, yamaken@r4603
corner case tests: yamaken@r3880, yamaken@r4603
file: eval.c
category: core
spec by eyes: yamaken@r3865, yamaken@r4103, yamaken@r4152, yamaken@r4299, yamaken@r4603, yamaken@r4946, yamaken@r4950
spec by tests: yamaken@r3865, yamaken@r4076, yamaken@r4103, yamaken@r4603, yamaken@r4946, yamaken@r4950
general review: yamaken@r3865, yamaken@r4946
64-bit by eyes: yamaken@r3865, yamaken@r4946
64-bit by tests:
coding style: yamaken@r3866, yamaken@r4946
normal case tests: yamaken@r3865, yamaken@r4103, yamaken@r4603, yamaken@r4946, yamaken@r4950
corner case tests: yamaken@r3865, yamaken@r4103, yamaken@r4603, yamaken@r4946, yamaken@r4950
file: module.c
category: core
spec by eyes: yamaken@r4019, yamaken@r4182
spec by tests:
general review: yamaken@r4019
64-bit by eyes: yamaken@r4019
64-bit by tests:
coding style: yamaken@r4019
normal case tests:
corner case tests:
file: sigscheme.c
category: core
spec by eyes: yamaken@r4017, yamaken@r4019, yamaken@r4066, yamaken@r4152, yamaken@r4182, yamaken@r4543, yamaken@r4722, yamaken@r4818, yamaken@r4880
spec by tests:
general review: yamaken@r4017
64-bit by eyes: yamaken@r4017
64-bit by tests:
coding style: yamaken@r4017
normal case tests:
corner case tests:
file: port.c
category: semicore
spec by eyes: yamaken@r3992, yamaken@r4152, yamaken@r4533
spec by tests:
general review: yamaken@r3992, yamaken@r4533
64-bit by eyes: yamaken@r3992
64-bit by tests:
coding style: yamaken@r3992
normal case tests:
corner case tests:
file: read.c
category: semicore
spec by eyes: yamaken@r4012, yamaken@r4533, yamaken@r4550
spec by tests: yamaken@r4012, yamaken@r4014, yamaken@r4015, yamaken@r4533
general review: yamaken@r4012, yamaken@r4533
64-bit by eyes: yamaken@r4012
64-bit by tests:
coding style: yamaken@r4012
normal case tests: yamaken@r4012, yamaken@r4533
corner case tests: yamaken@r4012, yamaken@r4533
file: write.c
category: semicore
spec by eyes: yamaken@r4041, yamaken@r4152, yamaken@r4543, yamaken@r4800
spec by tests:
general review: yamaken@r4041
64-bit by eyes: yamaken@r4041, yamaken@r4800
64-bit by tests:
coding style: yamaken@r4041
normal case tests:
corner case tests:
file: load.c
category: semicore
spec by eyes: yamaken@r4017, yamaken@r4182, yamaken@r4541, yamaken@r4722
spec by tests:
general review: yamaken@r4017
64-bit by eyes: yamaken@r4017
64-bit by tests:
coding style: yamaken@r4017
normal case tests:
corner case tests:
file: format.c
category: semicore
spec by eyes: yamaken@r4052, yamaken@r4070, yamaken@r4152, yamaken@r4543
spec by tests: yamaken@r4052, yamaken@r4070
general review: yamaken@r4052
64-bit by eyes: yamaken@r4052
64-bit by tests: yamaken@r4075
coding style: yamaken@r4052
normal case tests: yamaken@r4052, yamaken@r4070, yamaken@r4075
corner case tests: yamaken@r4052, yamaken@r4070, yamaken@r4075
file: syntax.c
category: r5rs
spec by eyes: yamaken@r3704, yamaken@r4103, yamaken@r4152
spec by tests: yamaken@r3704, yamaken@r4014, yamaken@r4076, yamaken@r4103
general review: yamaken@r3704
64-bit by eyes: yamaken@r3704
64-bit by tests:
coding style: yamaken@r3704
normal case tests: yamaken@r3704, yamaken@r4103
corner case tests: yamaken@r3896, yamaken@r4103
file: procedure.c
category: r5rs
spec by eyes: yamaken@r3880, yamaken@r4152
spec by tests: yamaken@r3880
general review: yamaken@r3880
64-bit by eyes: yamaken@r3880
64-bit by tests:
coding style: yamaken@r3880
normal case tests: yamaken@r3880
corner case tests: yamaken@r3880
file: number.c
category: r5rs
spec by eyes: yamaken@r3943, yamaken@r4071
spec by tests: yamaken@r3943, yamaken@r4071
general review: yamaken@r3943
64-bit by eyes: yamaken@r3943
64-bit by tests: yamaken@r4071
coding style: yamaken@r3943
normal case tests: yamaken@r3943, yamaken@r4071
corner case tests: yamaken@r3943, yamaken@r4071
file: number-io.c
category: r5rs
spec by eyes: yamaken@r3943, yamaken@r4071, yamaken@r4760
spec by tests: yamaken@r3943, yamaken@r4071, yamaken@r4760
general review: yamaken@r3943
64-bit by eyes: yamaken@r3943
64-bit by tests: yamaken@r4071
coding style: yamaken@r3943
normal case tests: yamaken@r3943, yamaken@r4071, yamaken@r4760
corner case tests: yamaken@r3943, yamaken@r4071, yamaken@r4760
file: list.c
category: r5rs
spec by eyes: yamaken@r3902
spec by tests: yamaken@r3902
general review: yamaken@r3902
64-bit by eyes: yamaken@r3902
64-bit by tests:
coding style: yamaken@r3902
normal case tests: yamaken@r3902
corner case tests: yamaken@r3902
file: deep-cadrs.c
category: r5rs
spec by eyes: yamaken@r3892
spec by tests: yamaken@r3903
general review: yamaken@r3892
64-bit by eyes: yamaken@r3892
64-bit by tests:
coding style: yamaken@r3892
normal case tests: yamaken@r3903
corner case tests: yamaken@r3903
file: char.c
category: r5rs
spec by eyes: yamaken@r4550
spec by tests: yamaken@r4550, yamaken@r4563
general review: yamaken@r4550
64-bit by eyes: yamaken@r4550
64-bit by tests:
coding style: yamaken@r4550
normal case tests: yamaken@r4550, yamaken@r4563
corner case tests:
file: string.c
category: r5rs
spec by eyes: yamaken@r3911, yamaken@r4865
spec by tests: yamaken@r3911, yamaken@r4865
general review: yamaken@r3911
64-bit by eyes: yamaken@r3911
64-bit by tests:
coding style: yamaken@r3911
normal case tests: yamaken@r3911, yamaken@r4865
corner case tests: yamaken@r3911
file: string-procedure.c
category: r5rs
spec by eyes: yamaken@r4552, yamaken@r4564, yamaken@r4865
spec by tests: yamaken@r4552, yamaken@r4564, yamaken@r4865
general review: yamaken@r4552
64-bit by eyes: yamaken@r4552
64-bit by tests:
coding style: yamaken@r4552
normal case tests: yamaken@r4552, yamaken@r4865
corner case tests:
file: vector.c
category: r5rs
spec by eyes: yamaken@r4562
spec by tests: yamaken@r4562
general review: yamaken@r4562
64-bit by eyes: yamaken@r4562
64-bit by tests:
coding style: yamaken@r4562
normal case tests: yamaken@r4562
corner case tests: yamaken@r4562
file: qquote.c
category: r5rs
spec by eyes: yamaken@r3649
spec by tests: yamaken@r3649
general review: yamaken@r3649
64-bit by eyes: yamaken@r3649
64-bit by tests:
coding style: yamaken@r3649
normal case tests: yamaken@r3649
corner case tests: yamaken@r3649
file: macro.c
category: r5rs
spec by eyes:
spec by tests:
general review:
64-bit by eyes:
64-bit by tests:
coding style:
normal case tests:
corner case tests:
file: promise.c
category: r5rs
spec by eyes: yamaken@r4740
spec by tests: yamaken@r4740
general review: yamaken@r4740
64-bit by eyes: yamaken@r4740
64-bit by tests:
coding style: yamaken@r4740
normal case tests: yamaken@r4740
corner case tests:
file: module-srfi1.c
category: srfi
spec by eyes: yamaken@r4643
spec by tests: yamaken@r4643
general review: yamaken@r4643
64-bit by eyes: yamaken@r4643
64-bit by tests:
coding style: yamaken@r4643
normal case tests: yamaken@r4643
corner case tests: yamaken@r4643
file: module-srfi2.c
category: srfi
spec by eyes: yamaken@r4583
spec by tests: yamaken@r4583
general review: yamaken@r4583
64-bit by eyes: yamaken@r4583
64-bit by tests:
coding style: yamaken@r4583
normal case tests: yamaken@r4583
corner case tests: yamaken@r4583
file: module-srfi6.c
category: srfi
spec by eyes: yamaken@r3992, yamaken@r4172
spec by tests: yamaken@r3992
general review: yamaken@r3992
64-bit by eyes: yamaken@r3992
64-bit by tests:
coding style: yamaken@r3992
normal case tests: yamaken@r3992
corner case tests: yamaken@r3992
file: module-srfi8.c
category: srfi
spec by eyes: yamaken@r4572
spec by tests: yamaken@r4572
general review: yamaken@r4572
64-bit by eyes: yamaken@r4572
64-bit by tests:
coding style: yamaken@r4572
normal case tests: yamaken@r4572
corner case tests: yamaken@r4572
file: module-srfi9.c
category: srfi
spec by eyes: yamaken@r4810, yamaken@r4939
spec by tests: yamaken@r4939
general review: yamaken@r4810, yamaken@r4939
64-bit by eyes: yamaken@r4810, yamaken@r4939
64-bit by tests:
coding style: yamaken@r4810, yamaken@r4939
normal case tests: yamaken@r4939
corner case tests: yamaken@r4939
file: module-srfi23.c
category: srfi
spec by eyes: yamaken@r3953
spec by tests: yamaken@r3953
general review: yamaken@r3953
64-bit by eyes: yamaken@r3953
64-bit by tests:
coding style: yamaken@r3953
normal case tests: yamaken@r3953
corner case tests:
file: module-srfi28.c
category: srfi
spec by eyes: yamaken@r4052
spec by tests: yamaken@r4052
general review: yamaken@r4052
64-bit by eyes: yamaken@r4052
64-bit by tests:
coding style: yamaken@r4052
normal case tests: yamaken@r4052
corner case tests: yamaken@r4052