-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
1425 lines (1425 loc) · 53 KB
/
log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Class file input :
StringTest
Constraint analysis time : 2206 ms
Constraint analysis memory consumption : 38 MB
Taint analysis time :540 ms
Taint analysis memory consumption :29 MB
Call graph analysis time :6895 ms
Call graph analysis memory Consumption :146 MB
Instrumentation time + class flashing in FileSystem : 1795 ms
Instrumentation memory Consumption :113 MB
Total repair count : 4
=====================================================================================
Class file input :
BugTestPack.asmbug.Method
Constraint analysis time : 2235 ms
Constraint analysis memory consumption : 37 MB
Taint analysis time :583 ms
Taint analysis memory consumption :29 MB
Call graph analysis time :8242 ms
Call graph analysis memory Consumption :147 MB
Instrumentation time + class flashing in FileSystem : 1535 ms
Instrumentation memory Consumption :118 MB
Total repair count : 5
=====================================================================================
Class file input :
BugTestPack.apacheMathBug.ComplexFormat
Constraint analysis time : 2672 ms
Constraint analysis memory consumption : -4 MB
Taint analysis time :600 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :7979 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 1681 ms
Instrumentation memory Consumption :128 MB
Total repair count : 2
=====================================================================================
Class file input :
BugTestPack.ApacheStrutsBug.CoolUriServletDispatcher
Constraint analysis time : 2310 ms
Constraint analysis memory consumption : 40 MBTaint analysis time :494 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :27965 ms
Call graph analysis memory Consumption :146 MB
Instrumentation time + class flashing in FileSystem : 952 ms
Instrumentation memory Consumption :115 MB
Total repair count : 2
=====================================================================================
Class file input :
BugTestPack.ApacheCommonLangMathBug.NumberUtils
Constraint analysis time : 2739 ms
Constraint analysis memory consumption : -3 MB
Taint analysis time :562 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :11305 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2158 ms
Instrumentation memory Consumption :133 MB
Total repair count : 8
=====================================================================================
Class file input :
BugTestPack.ApacheCommonFileUtils.ApacheBug
Constraint analysis time : 2235 ms
Constraint analysis memory consumption : 38 MB
Taint analysis time :565 ms
Taint analysis memory consumption :29 MB
Call graph analysis time :7422 ms
Call graph analysis memory Consumption :146 MB
Instrumentation time + class flashing in FileSystem : 1619 ms
Instrumentation memory Consumption :118 MB
Total repair count : 1
=====================================================================================
Class file input :
BugTestPack.ApacheCommonFileUtils.ApacheBug
Constraint analysis time : 2558 ms
Constraint analysis memory consumption : 38 MB
Taint analysis time :572 ms
Taint analysis memory consumption :29 MB
Call graph analysis time :7910 ms
Call graph analysis memory Consumption :146 MB
Instrumentation time + class flashing in FileSystem : 1748 ms
Instrumentation memory Consumption :124 MB
Total repair count : 1
Total unit handled : 125
=====================================================================================
Class file input :
BugTestPack.ApacheStrutsBug.CoolUriServletDispatcher
Constraint analysis time : 2532 ms
Constraint analysis memory consumption : 40 MB
Taint analysis time :687 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :28355 ms
Call graph analysis memory Consumption :145 MB
Instrumentation time + class flashing in FileSystem : 866 ms
Instrumentation memory Consumption :112 MB
Total repair count : 2
Total unit handled : 80
Call graph size : 11299
=====================================================================================
Class file input :
BugTestPack.ApacheStrutsBug.CoolUriServletDispatcher
Constraint analysis time : 2244 ms
Constraint analysis memory consumption : 40 MB
Taint analysis time :553 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :21986 ms
Call graph analysis memory Consumption :145 MB
Instrumentation time + class flashing in FileSystem : 787 ms
Instrumentation memory Consumption :114 MB
Total repair count : 2
Total unit handled : 80
Call graph size : 11299
Total unit count after repair : 102
=====================================================================================
Class file input :
BugTestPack.eclipseAspectJWeaverBug.WeaverBug
Constraint analysis time : 2748 ms
Constraint analysis memory consumption : 7 MB
Taint analysis time :637 ms
Taint analysis memory consumption :29 MB
Call graph analysis time :33918 ms
Call graph analysis memory Consumption :150 MB
Instrumentation time + class flashing in FileSystem : 1197 ms
Instrumentation memory Consumption :131 MB
Total repair count : 0
Total unit handled : 50
Call graph size : 16199
Total unit count after repair : 51
Total instrumentation : 1
=====================================================================================
Class file input :
BugTestPack.ApacheCommonFileFtpBug.Ftpbug
Constraint analysis time : 2283 ms
Constraint analysis memory consumption : -4 MB
Taint analysis time :504 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :7972 ms
Call graph analysis memory Consumption :213 MB
Instrumentation time + class flashing in FileSystem : 1344 ms
Instrumentation memory Consumption :119 MB
Total repair count : 1
Total unit handled : 14
Call graph size : 688
Total unit count after repair : 17
Total instrumentation : 3
=====================================================================================
Class file input :
BugTestPack.ApacheXalan.XalanBug
Constraint analysis time : 2295 ms
Constraint analysis memory consumption : -4 MB
Taint analysis time :608 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :8086 ms
Call graph analysis memory Consumption :213 MB
Instrumentation time + class flashing in FileSystem : 1527 ms
Instrumentation memory Consumption :117 MB
Total repair count : 0
Total unit handled : 33
Call graph size : 720
Total unit count after repair : 43
Total instrumentation : 10
=====================================================================================
Class file input :
BugTestPack.ApacheSOAPbug.SoapBug
Constraint analysis time : 2909 ms
Constraint analysis memory consumption : 9 MB
Taint analysis time :546 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :12511 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2089 ms
Instrumentation memory Consumption :142 MB
Total repair count : 3
Total unit handled : 165
Call graph size : 3924
Total unit count after repair : 185
Total instrumentation : 20
=====================================================================================
Class file input :
BugTestPack.ApacheCompressBug.TarArchiveEntry
Constraint analysis time : 2689 ms
Constraint analysis memory consumption : 5 MB
Taint analysis time :555 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :11517 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 1835 ms
Instrumentation memory Consumption :130 MB
Total repair count : 4
Total unit handled : 134
Call graph size : 4024
Total unit count after repair : 180
Total instrumentation : 46
=====================================================================================
Class file input :
BugTestPack.ApacheCliBug.CliBug
Constraint analysis time : 3144 ms
Constraint analysis memory consumption : -4 MB
Taint analysis time :634 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :13703 ms
Call graph analysis memory Consumption :213 MB
Instrumentation time + class flashing in FileSystem : 2435 ms
Instrumentation memory Consumption :125 MB
Total repair count : 0
Total unit handled : 53
Call graph size : 2680
Total unit count after repair : 72
Total instrumentation : 19
=====================================================================================
Class file input :
BugTestPack.ApacheWicket.WicketBug
Constraint analysis time : 3893 ms
Constraint analysis memory consumption : 8 MB
Taint analysis time :638 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :71571 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 1424 ms
Instrumentation memory Consumption :134 MB
Total repair count : 1
Total unit handled : 68
Call graph size : 64658
Total unit count after repair : 84
Total instrumentation : 16
=====================================================================================
Class file input :
BugTestPack.ApacheTapeStry.TapeStryBug
Constraint analysis time : 3232 ms
Constraint analysis memory consumption : 8 MB
Taint analysis time :658 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :22364 ms
Call graph analysis memory Consumption :211 MB
Instrumentation time + class flashing in FileSystem : 2014 ms
Instrumentation memory Consumption :137 MB
Total repair count : 5
Total unit handled : 71
Call graph size : 5106
Total unit count after repair : 102
Total instrumentation : 31
=====================================================================================
Class file input :
BugTestPack.ApacheJuddiBug.JuddiBug
Constraint analysis time : 3031 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :542 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :11585 ms
Call graph analysis memory Consumption :211 MB
Instrumentation time + class flashing in FileSystem : 2264 ms
Instrumentation memory Consumption :135 MB
Total repair count : 2
Total unit handled : 70
Call graph size : 2760
Total unit count after repair : 82
Total instrumentation : 12
=====================================================================================
Class file input :
BugTestPack.EclipseAspectWeaverBcelBug.AspectJBcel
Constraint analysis time : 3618 ms
Constraint analysis memory consumption : 24 MB
Taint analysis time :548 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :43706 ms
Call graph analysis memory Consumption :213 MB
Instrumentation time + class flashing in FileSystem : 1578 ms
Instrumentation memory Consumption :146 MB
Total repair count : 1
Total unit handled : 39
Call graph size : 24695
Total unit count after repair : 45
Total instrumentation : 6
=====================================================================================
Class file input :
BugTestPack.asmbug.Method
Constraint analysis time : 3094 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :574 ms
Taint analysis memory consumption :31 MB
Call graph analysis time :12818 ms
Call graph analysis memory Consumption :146 MB
Instrumentation time + class flashing in FileSystem : 2310 ms
Instrumentation memory Consumption :142 MB
Total repair count : 5
Total unit handled : 129
Call graph size : 3496
Total unit count after repair : 171
Total instrumentation : 42
=====================================================================================
Class file input :
BugTestPack.ApacheCommonLangMathBug.NumberUtils
Constraint analysis time : 3274 ms
Constraint analysis memory consumption : 19 MB
Taint analysis time :645 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :17298 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 3462 ms
Instrumentation memory Consumption :157 MB
Total repair count : 8
Total unit handled : 240
Call graph size : 5121
Total unit count after repair : 408
Total instrumentation : 168
=====================================================================================
Class file input :
BugTestPack.ApacheCliBug.CliBug
Constraint analysis time : 2823 ms
Constraint analysis memory consumption : 5 MB
Taint analysis time :557 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :11639 ms
Call graph analysis memory Consumption :149 MB
Instrumentation time + class flashing in FileSystem : 1900 ms
Instrumentation memory Consumption :133 MB
Total repair count : 0
Total unit handled : 53
Call graph size : 3224
Total unit count after repair : 72
Total instrumentation : 19
=====================================================================================
Class file input :
BugTestPack.ApacheCommonFileUtils.ApacheBug
Constraint analysis time : 3051 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :493 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :12107 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2128 ms
Instrumentation memory Consumption :141 MB
Total repair count : 1
Total unit handled : 125
Call graph size : 3363
Total unit count after repair : 201
Total instrumentation : 76
=====================================================================================
Class file input :
BugTestPack.ApacheCommonLangMathBug.NumberUtils
Constraint analysis time : 3170 ms
Constraint analysis memory consumption : 19 MB
Taint analysis time :578 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :16521 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2834 ms
Instrumentation memory Consumption :158 MB
Total repair count : 8
Total unit handled : 240
Call graph size : 5121
Total unit count after repair : 408
Total instrumentation : 168
=====================================================================================
Class file input :
BugTestPack.apacheMathBug.ComplexFormat
Constraint analysis time : 3112 ms
Constraint analysis memory consumption : 20 MB
Taint analysis time :526 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :11916 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2925 ms
Instrumentation memory Consumption :152 MB
Total repair count : 2
Total unit handled : 300
Call graph size : 3393
Total unit count after repair : 336
Total instrumentation : 36
=====================================================================================
Class file input :
BugTestPack.ApacheCommonFileFtpBug.Ftpbug
Constraint analysis time : 2806 ms
Constraint analysis memory consumption : 6 MB
Taint analysis time :573 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :11426 ms
Call graph analysis memory Consumption :212 MB
Instrumentation time + class flashing in FileSystem : 1897 ms
Instrumentation memory Consumption :132 MB
Total repair count : 1
Total unit handled : 14
Call graph size : 3309
Total unit count after repair : 20
Total instrumentation : 6
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 2969 ms
Constraint analysis memory consumption : 10 MB
Call graph analysis time :12332 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 2326 ms
Instrumentation memory Consumption :139 MB
Total repair count : 4
Total unit handled : 87
Call graph size : 3495
Total unit count after repair : 124
Total instrumentation : 37
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 2741 ms
Constraint analysis memory consumption : 8 MB
Call graph analysis time :13602 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 2962 ms
Instrumentation memory Consumption :132 MB
Total repair count : 2
Total unit handled : 37
Call graph size : 3428
Total unit count after repair : 56
Total instrumentation : 19
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 3053 ms
Constraint analysis memory consumption : 8 MB
Taint analysis time :527 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :13957 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 3117 ms
Instrumentation memory Consumption :132 MB
Total repair count : 1
Total unit handled : 37
Call graph size : 3428
Total unit count after repair : 52
Total instrumentation : 15
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 2844 ms
Constraint analysis memory consumption : 9 MB
Taint analysis time :491 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :14135 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 3301 ms
Instrumentation memory Consumption :135 MB
Total repair count : 4
Total unit handled : 42
Call graph size : 3432
Total unit count after repair : 77
Total instrumentation : 35
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 2922 ms
Constraint analysis memory consumption : 9 MB
Taint analysis time :546 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13818 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2746 ms
Instrumentation memory Consumption :135 MB
Total repair count : 4
Total unit handled : 42
Call graph size : 3432
Total unit count after repair : 77
Total instrumentation : 35
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 2890 ms
Constraint analysis memory consumption : 9 MB
Taint analysis time :517 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :14124 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2717 ms
Instrumentation memory Consumption :135 MB
Total repair count : 4
Total unit handled : 42
Call graph size : 3432
Total unit count after repair : 77
Total instrumentation : 35
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 3063 ms
Constraint analysis memory consumption : 9 MB
Taint analysis time :616 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13088 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 1995 ms
Instrumentation memory Consumption :135 MB
Total repair count : 4
Total unit handled : 42
Call graph size : 3432
Total unit count after repair : 77
Total instrumentation : 35
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 3120 ms
Constraint analysis memory consumption : 9 MB
Taint analysis time :524 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13878 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2677 ms
Instrumentation memory Consumption :136 MB
Total repair count : 5
Total unit handled : 42
Call graph size : 3432
Total unit count after repair : 81
Total instrumentation : 39
=====================================================================================
Class file input :
StringExample
Constraint analysis time : 2877 ms
Constraint analysis memory consumption : 8 MB
Taint analysis time :634 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :15050 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 3197 ms
Instrumentation memory Consumption :133 MB
Total repair count : 2
Total unit handled : 35
Call graph size : 3427
Total unit count after repair : 52
Total instrumentation : 17
=====================================================================================
Class file input :
BugTestPack.EclipseAspectWeaverBcelBug.AspectJBcel
Constraint analysis time : 3800 ms
Constraint analysis memory consumption : 24 MB
Taint analysis time :576 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :43631 ms
Call graph analysis memory Consumption :214 MB
Instrumentation time + class flashing in FileSystem : 1654 ms
Instrumentation memory Consumption :156 MB
Total repair count : 1
Total unit handled : 39
Call graph size : 25034
Total unit count after repair : 45
Total instrumentation : 6
=====================================================================================
Class file input :
BugTestPack.eclipseAspectJWeaverBug.WeaverBug
Constraint analysis time : 3142 ms
Constraint analysis memory consumption : 17 MB
Taint analysis time :590 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :37875 ms
Call graph analysis memory Consumption :212 MB
Instrumentation time + class flashing in FileSystem : 1576 ms
Instrumentation memory Consumption :146 MB
Total repair count : 0
Total unit handled : 50
Call graph size : 20636
Total unit count after repair : 54
Total instrumentation : 4
=====================================================================================
Class file input :
BugTestPack.eclipseAspectJWeaverBug.WeaverBug
Constraint analysis time : 3171 ms
Constraint analysis memory consumption : 18 MB
Taint analysis time :581 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :41297 ms
Call graph analysis memory Consumption :212 MB
Instrumentation time + class flashing in FileSystem : 1649 ms
Instrumentation memory Consumption :142 MB
Total repair count : 1
Total unit handled : 50
Call graph size : 20636
Total unit count after repair : 54
Total instrumentation : 4
=====================================================================================
Class file input :
BugTestPack.ApacheJuddiBug.JuddiBug
Constraint analysis time : 3102 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :544 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :13644 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2880 ms
Instrumentation memory Consumption :138 MB
Total repair count : 2
Total unit handled : 70
Call graph size : 3270
Total unit count after repair : 80
Total instrumentation : 10
=====================================================================================
Class file input :
BugTestPack.ApacheCommonFileFtpBug.Ftpbug
Constraint analysis time : 2816 ms
Constraint analysis memory consumption : 6 MB
Taint analysis time :542 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :12394 ms
Call graph analysis memory Consumption :212 MB
Instrumentation time + class flashing in FileSystem : 2694 ms
Instrumentation memory Consumption :131 MB
Total repair count : 1
Total unit handled : 14
Call graph size : 3309
Total unit count after repair : 20
Total instrumentation : 6
=====================================================================================
Class file input :
BugTestPack.ApacheSOAPbug.SoapBug
Constraint analysis time : 3403 ms
Constraint analysis memory consumption : 19 MB
Taint analysis time :586 ms
Taint analysis memory consumption :30 MB
Call graph analysis time :14097 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2365 ms
Instrumentation memory Consumption :148 MB
Total repair count : 5
Total unit handled : 165
Call graph size : 5060
Total unit count after repair : 197
Total instrumentation : 32
=====================================================================================
Class file input :
BugTestPack.ApacheStrutsBug.CoolUriServletDispatcher
Constraint analysis time : 3035 ms
Constraint analysis memory consumption : 14 MB
Taint analysis time :522 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :25889 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 1378 ms
Instrumentation memory Consumption :140 MB
Total repair count : 2
Total unit handled : 80
Call graph size : 16087
Total unit count after repair : 105
Total instrumentation : 25
=====================================================================================
Class file input :
BugTestPack.ApacheTapeStry.TapeStryBug
Constraint analysis time : 2905 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :517 ms
Taint analysis memory consumption :34 MB
Call graph analysis time :24365 ms
Call graph analysis memory Consumption :211 MB
Instrumentation time + class flashing in FileSystem : 1906 ms
Instrumentation memory Consumption :136 MB
Total repair count : 5
Total unit handled : 71
Call graph size : 6287
Total unit count after repair : 102
Total instrumentation : 31
=====================================================================================
Class file input :
BugTestPack.ApacheWicket.WicketBug
Constraint analysis time : 3059 ms
Constraint analysis memory consumption : 14 MB
Taint analysis time :510 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :52458 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 1453 ms
Instrumentation memory Consumption :142 MB
Total repair count : 1
Total unit handled : 68
Call graph size : 70774
Total unit count after repair : 84
Total instrumentation : 16
=====================================================================================
Class file input :
BugTestPack.ApacheXalan.XalanBug
Constraint analysis time : 2744 ms
Constraint analysis memory consumption : 8 MB
Taint analysis time :532 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13584 ms
Call graph analysis memory Consumption :213 MB
Instrumentation time + class flashing in FileSystem : 2228 ms
Instrumentation memory Consumption :131 MB
Total repair count : 2
Total unit handled : 33
Call graph size : 3333
Total unit count after repair : 46
Total instrumentation : 13
=====================================================================================
Class file input :
BugTestPack.ApacheCliBug.CliBug2_x
Constraint analysis time : 2842 ms
Constraint analysis memory consumption : 5 MB
Taint analysis time :650 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :12023 ms
Call graph analysis memory Consumption :212 MB
Instrumentation time + class flashing in FileSystem : 2033 ms
Instrumentation memory Consumption :131 MB
Total repair count : 2
Total unit handled : 21
Call graph size : 3229
Total unit count after repair : 34
Total instrumentation : 13
=====================================================================================
Class file input :
BugTestPack.ApacheCliBug.CliBug2_x
Constraint analysis time : 2759 ms
Constraint analysis memory consumption : 5 MB
Taint analysis time :514 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13271 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 2688 ms
Instrumentation memory Consumption :132 MB
Total repair count : 2
Total unit handled : 22
Call graph size : 3229
Total unit count after repair : 37
Total instrumentation : 15
=====================================================================================
Class file input :
log4jRep
Constraint analysis time : 2784 ms
Constraint analysis memory consumption : 4 MB
Taint analysis time :538 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :12963 ms
Call graph analysis memory Consumption :212 MB
Instrumentation time + class flashing in FileSystem : 2527 ms
Instrumentation memory Consumption :131 MB
Total repair count : 1
Total unit handled : 17
Call graph size : 3221
Total unit count after repair : 23
Total instrumentation : 6
=====================================================================================
Class file input :
BugTestPack.AdobeFlexBuf.OrderedProperties
Constraint analysis time : 4800 ms
Constraint analysis memory consumption : 40 MB
Taint analysis time :468 ms
Taint analysis memory consumption :31 MB
Call graph analysis time :12904 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2610 ms
Instrumentation memory Consumption :189 MB
Total repair count : 25
Total unit handled : 600
Call graph size : 6142
Total unit count after repair : 807
Total instrumentation : 207
=====================================================================================
Class file input :
BugTestPack.ApacheHama.HamaBug
Constraint analysis time : 2656 ms
Constraint analysis memory consumption : 5 MB
Taint analysis time :484 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :14408 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 3111 ms
Instrumentation memory Consumption :134 MB
Total repair count : 5
Total unit handled : 35
Call graph size : 3791
Total unit count after repair : 63
Total instrumentation : 28
=====================================================================================
Class file input :
BugTestPack.ApacheHama.HamaBug
Constraint analysis time : 3085 ms
Constraint analysis memory consumption : 5 MB
Taint analysis time :575 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :15438 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 2324 ms
Instrumentation memory Consumption :133 MB
Total repair count : 5
Total unit handled : 35
Call graph size : 3791
Total unit count after repair : 63
Total instrumentation : 28
=====================================================================================
Class file input :
BugTestPack.ApacheHama.HamaBug
Constraint analysis time : 2653 ms
Constraint analysis memory consumption : 5 MB
Call graph analysis time :14324 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 2746 ms
Instrumentation memory Consumption :133 MB
Total repair count : 5
Total unit handled : 35
Call graph size : 3791
Total unit count after repair : 63
Total instrumentation : 28
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 2953 ms
Constraint analysis memory consumption : 10 MB
Call graph analysis time :14013 ms
Call graph analysis memory Consumption :210 MB
Instrumentation time + class flashing in FileSystem : 2372 ms
Instrumentation memory Consumption :143 MB
Total repair count : 4
Total unit handled : 87
Call graph size : 4007
Total unit count after repair : 124
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 3118 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :551 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13580 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2699 ms
Instrumentation memory Consumption :139 MB
Total repair count : 4
Total unit handled : 87
Call graph size : 4007
Total unit count after repair : 124
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 3127 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :541 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :13131 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2867 ms
Instrumentation memory Consumption :137 MB
Total repair count : 4
Total unit handled : 87
Call graph size : 4007
Total unit count after repair : 124
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 3045 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :702 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13544 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2362 ms
Instrumentation memory Consumption :139 MB
Total repair count : 4
Total unit handled : 89
Call graph size : 4010
Total unit count after repair : 126
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 3349 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :563 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :13798 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2029 ms
Instrumentation memory Consumption :138 MB
Total repair count : 4
Total unit handled : 89
Call graph size : 4010
Total unit count after repair : 126
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 3246 ms
Constraint analysis memory consumption : 10 MB
Taint analysis time :519 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :12922 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2218 ms
Instrumentation memory Consumption :139 MB
Total repair count : 4
Total unit handled : 89
Call graph size : 4010
Total unit count after repair : 126
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 2954 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :542 ms
Taint analysis memory consumption :33 MB
Call graph analysis time :11850 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2170 ms
Instrumentation memory Consumption :136 MB
Total repair count : 4
Total unit handled : 91
Call graph size : 4013
Total unit count after repair : 128
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 2973 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :619 ms
Taint analysis memory consumption :32 MB
Call graph analysis time :13294 ms
Call graph analysis memory Consumption :209 MB
Instrumentation time + class flashing in FileSystem : 2141 ms
Instrumentation memory Consumption :138 MB
Total repair count : 4
Total unit handled : 91
Call graph size : 4013
Total unit count after repair : 128
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 2884 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :1015 ms
Taint analysis memory consumption :7 MB
Call graph analysis time :13045 ms
Call graph analysis memory Consumption :211 MB
Instrumentation time + class flashing in FileSystem : 2614 ms
Instrumentation memory Consumption :138 MB
Total repair count : 4
Total unit handled : 91
Call graph size : 4013
Total unit count after repair : 128
Total instrumentation : 37
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 2984 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :1296 ms
Taint analysis memory consumption :11 MB
Call graph analysis time :12754 ms
Call graph analysis memory Consumption :211 MB
Instrumentation time + class flashing in FileSystem : 2310 ms
Instrumentation memory Consumption :137 MB
Total repair count : 2
Total unit handled : 91
Call graph size : 4013
Total unit count after repair : 109
Total instrumentation : 18
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 3229 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :1603 ms
Taint analysis memory consumption :12 MB
Call graph analysis time :14785 ms
Call graph analysis memory Consumption :211 MB
Instrumentation time + class flashing in FileSystem : 3173 ms
Instrumentation memory Consumption :140 MB
Total repair count : 2
Total unit handled : 91
Call graph size : 4013
Total unit count after repair : 123
Total instrumentation : 32
=====================================================================================
Class file input :
StringTest
Constraint analysis time : 3061 ms
Constraint analysis memory consumption : 11 MB
Taint analysis time :1391 ms
Taint analysis memory consumption :12 MB
Call graph analysis time :12820 ms
Call graph analysis memory Consumption :211 MB
Instrumentation time + class flashing in FileSystem : 2596 ms
Instrumentation memory Consumption :137 MB
Total repair count : 2
Total unit handled : 91
Call graph size : 4013
Total unit count after repair : 123
Total instrumentation : 32
=====================================================================================
Class file input :
BugTestPack.ApacheSlingBug.SlingBug
Constraint analysis time : 3022 ms
Constraint analysis memory consumption : 14 MB
Call graph analysis time :21309 ms
Call graph analysis memory Consumption :208 MB
Instrumentation time + class flashing in FileSystem : 3559 ms
Instrumentation memory Consumption :147 MB
Total repair count : 6
Total unit handled : 58
Call graph size : 4505
Total unit count after repair : 97
Total instrumentation : 39
=====================================================================================
Class file input :