File size: 27,697 Bytes
6baed57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[info] Using config /libxml2/mull.yml
[debug] Diagnostics: Debug Mode enabled. Debug-level messages will be printed.
[warning] Could not find dynamic library: libm.so.6
[warning] Could not find dynamic library: libc.so.6
[info] Warm up run (threads: 1)

       [################################] 1/1. Finished in 108ms
[info] Extracting coverage information (threads: 1)

       [################################] 1/1. Finished in 3ms
[info] Filter mutants (threads: 1)

       [################################] 1/1. Finished in 14ms
[info] Baseline run (threads: 1)

       [################################] 1/1. Finished in 106ms
[info] Running mutants (threads: 20)
[debug] /libxml2/HTMLparser.c:2989:15 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2974:10 ExecutionResult: Failed

       [--------------------------------] 2/143
[debug] /libxml2/HTMLparser.c:2424:28 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2415:19 ExecutionResult: Passed

       [--------------------------------] 4/143
[debug] /libxml2/HTMLparser.c:4554:23 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4657:14 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:3060:27 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3038:46 ExecutionResult: Passed

       [#-------------------------------] 8/143
[debug] /libxml2/HTMLparser.c:4518:19 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4541:22 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4590:5 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4567:22 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3323:19 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3353:16 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3335:30 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:3067:33 ExecutionResult: Passed

       [###-----------------------------] 16/143
[debug] /libxml2/HTMLparser.c:3017:27 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:3053:17 ExecutionResult: Passed

       [####----------------------------] 18/143
[debug] /libxml2/HTMLparser.c:2408:9 ExecutionResult: Failed

       [####----------------------------] 19/143
[debug] /libxml2/HTMLparser.c:3002:37 ExecutionResult: Failed

       [####----------------------------] 20/143
[debug] /libxml2/HTMLparser.c:2426:17 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2419:16 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2976:10 ExecutionResult: Passed

       [#####---------------------------] 23/143
[debug] /libxml2/HTMLparser.c:4556:18 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3060:33 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4520:19 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4661:15 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:3038:57 ExecutionResult: Failed

       [######--------------------------] 28/143
[debug] /libxml2/HTMLparser.c:4542:19 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4633:5 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4568:16 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3356:29 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:3336:13 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3023:26 ExecutionResult: Passed

       [#######-------------------------] 34/143
[debug] /libxml2/HTMLparser.c:3072:20 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3056:21 ExecutionResult: Passed

       [########------------------------] 36/143
[debug] /libxml2/HTMLparser.c:2989:28 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:2411:12 ExecutionResult: Passed

       [########------------------------] 38/143
[debug] /libxml2/HTMLparser.c:3006:21 ExecutionResult: Passed

       [########------------------------] 39/143
[debug] /libxml2/HTMLparser.c:2419:16 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2977:9 ExecutionResult: Passed

       [#########-----------------------] 41/143
[debug] /libxml2/HTMLparser.c:4557:19 ExecutionResult: Passed

       [#########-----------------------] 42/143
[debug] /libxml2/HTMLparser.c:3061:33 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3040:25 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4666:9 ExecutionResult: Failed

       [##########----------------------] 45/143
[debug] /libxml2/HTMLparser.c:4636:14 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4545:50 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4569:23 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3336:53 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3358:29 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:3030:30 ExecutionResult: Passed

       [###########---------------------] 51/143
[debug] /libxml2/HTMLparser.c:3072:25 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3056:30 ExecutionResult: Passed

       [###########---------------------] 53/143
[debug] /libxml2/HTMLparser.c:2993:18 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2426:17 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:2411:12 ExecutionResult: Passed

       [############--------------------] 56/143
[debug] /libxml2/HTMLparser.c:3009:32 ExecutionResult: Passed

       [############--------------------] 57/143
[debug] /libxml2/HTMLparser.c:4522:13 ExecutionResult: Failed

       [############--------------------] 58/143
[debug] /libxml2/HTMLparser.c:2983:13 ExecutionResult: Failed

       [#############-------------------] 59/143
[debug] /libxml2/HTMLparser.c:4561:23 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3061:47 ExecutionResult: Passed

       [#############-------------------] 61/143
[debug] /libxml2/HTMLparser.c:4639:9 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4546:23 ExecutionResult: Failed

       [##############------------------] 63/143
[debug] /libxml2/HTMLparser.c:3364:12 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4573:23 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3030:30 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3340:22 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3072:31 ExecutionResult: Passed

       [###############-----------------] 68/143
[debug] /libxml2/HTMLparser.c:3059:26 ExecutionResult: Passed

       [###############-----------------] 69/143
[debug] /libxml2/HTMLparser.c:2431:12 ExecutionResult: Passed

       [###############-----------------] 70/143
[debug] /libxml2/HTMLparser.c:2413:19 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2419:34 ExecutionResult: Failed

       [################----------------] 72/143
[debug] /libxml2/HTMLparser.c:4524:9 ExecutionResult: Passed

       [################----------------] 73/143
[debug] /libxml2/HTMLparser.c:3042:27 ExecutionResult: Failed

       [################----------------] 74/143
[debug] /libxml2/HTMLparser.c:4666:39 ExecutionResult: Failed

       [################----------------] 75/143
[debug] /libxml2/HTMLparser.c:3061:47 ExecutionResult: Passed

       [#################---------------] 76/143
[debug] /libxml2/HTMLparser.c:4562:23 ExecutionResult: Passed

       [#################---------------] 77/143
[debug] /libxml2/HTMLparser.c:4639:49 ExecutionResult: Failed

       [#################---------------] 78/143
[debug] /libxml2/HTMLparser.c:4548:18 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3340:22 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4508:12 ExecutionResult: Passed

       [##################--------------] 81/143
[debug] /libxml2/HTMLparser.c:3037:25 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4574:20 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3059:26 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3073:24 ExecutionResult: Passed

       [###################-------------] 85/143
[debug] /libxml2/HTMLparser.c:3011:27 ExecutionResult: Failed

       [###################-------------] 86/143
[debug] /libxml2/HTMLparser.c:2899:20 ExecutionResult: Passed

       [###################-------------] 87/143
[debug] /libxml2/HTMLparser.c:2413:19 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2419:43 ExecutionResult: Passed

       [###################-------------] 89/143
[debug] /libxml2/HTMLparser.c:4534:24 ExecutionResult: Failed

       [####################------------] 90/143
[debug] /libxml2/HTMLparser.c:3064:29 ExecutionResult: Passed

       [####################------------] 91/143
[debug] /libxml2/HTMLparser.c:4565:22 ExecutionResult: Passed

       [####################------------] 92/143
[debug] /libxml2/HTMLparser.c:4639:49 ExecutionResult: Failed

       [####################------------] 93/143
[debug] /libxml2/HTMLparser.c:4549:19 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3341:13 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4511:14 ExecutionResult: Failed

       [#####################-----------] 96/143
[debug] /libxml2/HTMLparser.c:3038:29 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:3059:42 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:4575:22 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3073:24 ExecutionResult: Passed

       [######################----------] 100/143
[debug] /libxml2/HTMLparser.c:2968:9 ExecutionResult: Failed

       [######################----------] 101/143
[debug] /libxml2/HTMLparser.c:2414:20 ExecutionResult: Passed

       [######################----------] 102/143
[debug] /libxml2/HTMLparser.c:2424:10 ExecutionResult: Passed

       [#######################---------] 103/143
[debug] /libxml2/HTMLparser.c:4666:39 ExecutionResult: Failed

       [#######################---------] 104/143
[debug] /libxml2/HTMLparser.c:3011:40 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4566:27 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3066:30 ExecutionResult: Passed

       [#######################---------] 107/143
[debug] /libxml2/HTMLparser.c:4653:16 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4553:50 ExecutionResult: Passed

       [########################--------] 109/143
[debug] /libxml2/HTMLparser.c:3352:17 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3038:37 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4515:20 ExecutionResult: Failed
[debug] /libxml2/HTMLparser.c:4577:5 ExecutionResult: Passed

       [#########################-------] 113/143
[debug] /libxml2/HTMLparser.c:3059:42 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:3076:25 ExecutionResult: Passed

       [#########################-------] 115/143
[debug] /libxml2/HTMLparser.c:4536:19 ExecutionResult: Failed

       [#########################-------] 116/143
[debug] /libxml2/HTMLparser.c:2969:9 ExecutionResult: Failed

       [##########################------] 117/143
[debug] /libxml2/HTMLparser.c:2424:14 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2414:20 ExecutionResult: Passed

       [##########################------] 119/143
[debug] /libxml2/HTMLparser.c:4687:14 ExecutionResult: Failed

       [##########################------] 120/143
[debug] /libxml2/HTMLparser.c:4537:20 ExecutionResult: Passed

       [###########################-----] 121/143
[debug] /libxml2/HTMLparser.c:2971:9 ExecutionResult: Passed

       [###########################-----] 122/143
[debug] /libxml2/HTMLparser.c:2424:19 ExecutionResult: Passed
[debug] /libxml2/HTMLparser.c:2415:19 ExecutionResult: Passed

       [###########################-----] 124/143
[debug] /libxml2/HTMLparser.c:4687:14 ExecutionResult: Passed

       [###########################-----] 125/143
[debug] /libxml2/HTMLparser.c:3327:21 ExecutionResult: Timedout

       [############################----] 126/143
[debug] /libxml2/HTMLparser.c:2999:23 ExecutionResult: Timedout

       [############################----] 127/143
[debug] /libxml2/HTMLparser.c:2984:13 ExecutionResult: Timedout

       [############################----] 128/143
[debug] /libxml2/HTMLparser.c:2999:23 ExecutionResult: Passed

       [############################----] 129/143
[debug] /libxml2/HTMLparser.c:2985:13 ExecutionResult: Failed

       [#############################---] 130/143
[debug] /libxml2/HTMLparser.c:3047:27 ExecutionResult: Timedout

       [#############################---] 131/143
[debug] /libxml2/HTMLparser.c:2986:13 ExecutionResult: Passed

       [#############################---] 132/143
[debug] /libxml2/HTMLparser.c:3051:17 ExecutionResult: Failed

       [#############################---] 133/143
[debug] /libxml2/HTMLparser.c:3052:18 ExecutionResult: Failed

       [#############################---] 134/143
[debug] /libxml2/HTMLparser.c:3013:34 ExecutionResult: Timedout

       [##############################--] 135/143
[debug] /libxml2/HTMLparser.c:3014:29 ExecutionResult: Passed

       [##############################--] 136/143
[debug] /libxml2/HTMLparser.c:3327:21 ExecutionResult: Timedout

       [##############################--] 137/143
[debug] /libxml2/HTMLparser.c:3328:18 ExecutionResult: Failed

       [##############################--] 138/143
[debug] /libxml2/HTMLparser.c:3329:16 ExecutionResult: Failed

       [###############################-] 139/143
[debug] /libxml2/HTMLparser.c:3334:16 ExecutionResult: Passed

       [###############################-] 140/143
[debug] /libxml2/HTMLparser.c:3001:28 ExecutionResult: Timedout

       [###############################-] 141/143
[debug] /libxml2/HTMLparser.c:3334:16 ExecutionResult: Failed

       [###############################-] 142/143
[debug] /libxml2/HTMLparser.c:3002:28 ExecutionResult: Passed

       [################################] 143/143. Finished in 5310ms
[debug] Done running mutants
[info] Survived mutants (90/143):
/libxml2/HTMLparser.c:2411:12: warning: Survived: Replaced >= with > [cxx_ge_to_gt]
    if ((c >= 0x80) && (c < 0xA0)) {
           ^
/libxml2/HTMLparser.c:2411:12: warning: Survived: Replaced >= with < [cxx_ge_to_lt]
    if ((c >= 0x80) && (c < 0xA0)) {
           ^
/libxml2/HTMLparser.c:2413:19: warning: Survived: Replaced <= with > [cxx_le_to_gt]
    } else if ((c <= 0) ||
                  ^
/libxml2/HTMLparser.c:2413:19: warning: Survived: Replaced <= with < [cxx_le_to_lt]
    } else if ((c <= 0) ||
                  ^
/libxml2/HTMLparser.c:2414:20: warning: Survived: Replaced >= with > [cxx_ge_to_gt]
               ((c >= 0xD800) && (c < 0xE000)) ||
                   ^
/libxml2/HTMLparser.c:2414:20: warning: Survived: Replaced >= with < [cxx_ge_to_lt]
               ((c >= 0xD800) && (c < 0xE000)) ||
                   ^
/libxml2/HTMLparser.c:2415:19: warning: Survived: Replaced > with >= [cxx_gt_to_ge]
               (c > 0x10FFFF)) {
                  ^
/libxml2/HTMLparser.c:2415:19: warning: Survived: Replaced > with <= [cxx_gt_to_le]
               (c > 0x10FFFF)) {
                  ^
/libxml2/HTMLparser.c:2419:16: warning: Survived: Replaced < with >= [cxx_lt_to_ge]
    if      (c <    0x80) { bits =  0; hi = 0x00; }
               ^
/libxml2/HTMLparser.c:2419:16: warning: Survived: Replaced < with <= [cxx_lt_to_le]
    if      (c <    0x80) { bits =  0; hi = 0x00; }
               ^
/libxml2/HTMLparser.c:2419:43: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    if      (c <    0x80) { bits =  0; hi = 0x00; }
                                          ^
/libxml2/HTMLparser.c:2424:10: warning: Survived: Replaced x++ with x-- [cxx_post_inc_to_post_dec]
    out[i++] = (c >> bits) | hi;
         ^
/libxml2/HTMLparser.c:2424:14: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    out[i++] = (c >> bits) | hi;
             ^
/libxml2/HTMLparser.c:2424:19: warning: Survived: Replaced >> with << [cxx_rshift_to_lshift]
    out[i++] = (c >> bits) | hi;
                  ^
/libxml2/HTMLparser.c:2424:28: warning: Survived: Replaced | with & [cxx_or_to_and]
    out[i++] = (c >> bits) | hi;
                           ^
/libxml2/HTMLparser.c:2426:17: warning: Survived: Replaced > with >= [cxx_gt_to_ge]
    while (bits > 0) {
                ^
/libxml2/HTMLparser.c:2431:12: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    *osize = i;
           ^
/libxml2/HTMLparser.c:2899:20: warning: Survived: Replaced == with != [cxx_eq_to_ne]
    if ((ctxt->sax == NULL) || (ctxt->disableSAX))
                   ^
/libxml2/HTMLparser.c:2971:9: warning: Survived: Replaced 'T a = b' with 'T a = 42' [cxx_init_const]
    int eof = PARSER_PROGRESSIVE(ctxt);
        ^
/libxml2/HTMLparser.c:2976:10: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    line = input->line;
         ^
/libxml2/HTMLparser.c:2977:9: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    col = input->col;
        ^
/libxml2/HTMLparser.c:2986:13: warning: Survived: Replaced 'T a = b' with 'T a = 42' [cxx_init_const]
        int cp = 0;
            ^
/libxml2/HTMLparser.c:2989:15: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
        avail = input->end - chunk;
              ^
/libxml2/HTMLparser.c:2993:18: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
        replSize = 0;
                 ^
/libxml2/HTMLparser.c:2999:23: warning: Survived: Replaced <= with < [cxx_le_to_lt]
            if (avail <= 64) {
                      ^
/libxml2/HTMLparser.c:3002:28: warning: Survived: Replaced 'T a = b' with 'T a = 42' [cxx_init_const]
                    size_t off = in - chunk;
                           ^
/libxml2/HTMLparser.c:3006:21: warning: Survived: Replaced call to a function with 42 [cxx_replace_scalar_call]
                    xmlParserGrow(ctxt);
                    ^
/libxml2/HTMLparser.c:3009:32: warning: Survived: Replaced - with + [cxx_sub_to_add]
                    chunk = in - off;
                               ^
/libxml2/HTMLparser.c:3014:29: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
                        eof = 1;
                            ^
/libxml2/HTMLparser.c:3023:26: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
                    done = 1;
                         ^
/libxml2/HTMLparser.c:3030:30: warning: Survived: Replaced > with >= [cxx_gt_to_ge]
                while (avail > 0) {
                             ^
/libxml2/HTMLparser.c:3030:30: warning: Survived: Replaced > with <= [cxx_gt_to_le]
                while (avail > 0) {
                             ^
/libxml2/HTMLparser.c:3038:46: warning: Survived: Replaced & with | [cxx_and_to_or]
                    if ((1u << (cur & 0x1F)) & mask[cur >> 5])
                                             ^
/libxml2/HTMLparser.c:3040:25: warning: Survived: Replaced += with -= [cxx_add_assign_to_sub_assign]
                    col += 1;
                        ^
/libxml2/HTMLparser.c:3053:17: warning: Survived: Replaced += with -= [cxx_add_assign_to_sub_assign]
            col += 1;
                ^
/libxml2/HTMLparser.c:3056:21: warning: Survived: Replaced 'T a = b' with 'T a = 42' [cxx_init_const]
                int lc = cur | 0x20;
                    ^
/libxml2/HTMLparser.c:3056:30: warning: Survived: Replaced | with & [cxx_or_to_and]
                int lc = cur | 0x20;
                             ^
/libxml2/HTMLparser.c:3059:26: warning: Survived: Replaced >= with > [cxx_ge_to_gt]
                if ((cur >= '0') && (cur <= '9')) {
                         ^
/libxml2/HTMLparser.c:3059:26: warning: Survived: Replaced >= with < [cxx_ge_to_lt]
                if ((cur >= '0') && (cur <= '9')) {
                         ^
/libxml2/HTMLparser.c:3059:42: warning: Survived: Replaced <= with > [cxx_le_to_gt]
                if ((cur >= '0') && (cur <= '9')) {
                                         ^
/libxml2/HTMLparser.c:3059:42: warning: Survived: Replaced <= with < [cxx_le_to_lt]
                if ((cur >= '0') && (cur <= '9')) {
                                         ^
/libxml2/HTMLparser.c:3060:27: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
                    digit = cur - '0';
                          ^
/libxml2/HTMLparser.c:3060:33: warning: Survived: Replaced - with + [cxx_sub_to_add]
                    digit = cur - '0';
                                ^
/libxml2/HTMLparser.c:3061:33: warning: Survived: Replaced == with != [cxx_eq_to_ne]
                } else if ((ncr == 16) && (lc >= 'a') && (lc <= 'f')) {
                                ^
/libxml2/HTMLparser.c:3061:47: warning: Survived: Replaced >= with > [cxx_ge_to_gt]
                } else if ((ncr == 16) && (lc >= 'a') && (lc <= 'f')) {
                                              ^
/libxml2/HTMLparser.c:3061:47: warning: Survived: Replaced >= with < [cxx_ge_to_lt]
                } else if ((ncr == 16) && (lc >= 'a') && (lc <= 'f')) {
                                              ^
/libxml2/HTMLparser.c:3064:29: warning: Survived: Replaced == with != [cxx_eq_to_ne]
                    if (cur == ';') {
                            ^
/libxml2/HTMLparser.c:3066:30: warning: Survived: Replaced += with -= [cxx_add_assign_to_sub_assign]
                        size += 1;
                             ^
/libxml2/HTMLparser.c:3067:33: warning: Survived: Replaced += with -= [cxx_add_assign_to_sub_assign]
                        ncrSize += 1;
                                ^
/libxml2/HTMLparser.c:3072:20: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
                cp = cp * ncr + digit;
                   ^
/libxml2/HTMLparser.c:3072:25: warning: Survived: Replaced * with / [cxx_mul_to_div]
                cp = cp * ncr + digit;
                        ^
/libxml2/HTMLparser.c:3072:31: warning: Survived: Replaced + with - [cxx_add_to_sub]
                cp = cp * ncr + digit;
                              ^
/libxml2/HTMLparser.c:3073:24: warning: Survived: Replaced >= with > [cxx_ge_to_gt]
                if (cp >= 0x110000)
                       ^
/libxml2/HTMLparser.c:3073:24: warning: Survived: Replaced >= with < [cxx_ge_to_lt]
                if (cp >= 0x110000)
                       ^
/libxml2/HTMLparser.c:3076:25: warning: Survived: Replaced += with -= [cxx_add_assign_to_sub_assign]
                ncrSize += 1;
                        ^
/libxml2/HTMLparser.c:3323:19: warning: Survived: Replaced -= with += [cxx_sub_assign_to_add_assign]
            avail -= size;
                  ^
/libxml2/HTMLparser.c:3334:16: warning: Survived: Replaced > with >= [cxx_gt_to_ge]
        if (in > chunk) {
               ^
/libxml2/HTMLparser.c:3336:13: warning: Survived: Removed the call to the function [cxx_remove_void_call]
            htmlCharDataSAXCallback(ctxt, chunk, in - chunk, mode);
            ^
/libxml2/HTMLparser.c:3336:53: warning: Survived: Replaced - with + [cxx_sub_to_add]
            htmlCharDataSAXCallback(ctxt, chunk, in - chunk, mode);
                                                    ^
/libxml2/HTMLparser.c:3340:22: warning: Survived: Replaced > with >= [cxx_gt_to_ge]
        if (replSize > 0)
                     ^
/libxml2/HTMLparser.c:3340:22: warning: Survived: Replaced > with <= [cxx_gt_to_le]
        if (replSize > 0)
                     ^
/libxml2/HTMLparser.c:3341:13: warning: Survived: Removed the call to the function [cxx_remove_void_call]
            htmlCharDataSAXCallback(ctxt, repl, replSize, mode);
            ^
/libxml2/HTMLparser.c:3352:17: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    input->line = line;
                ^
/libxml2/HTMLparser.c:3353:16: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    input->col = col;
               ^
/libxml2/HTMLparser.c:4508:12: warning: Survived: Replaced 'T a = b' with 'T a = 42' [cxx_init_const]
    size_t initialNodeTabSize = 10;
           ^
/libxml2/HTMLparser.c:4524:9: warning: Survived: Removed the call to the function [cxx_remove_void_call]
        xmlSAX2InitHtmlDefaultSAXHandler(ctxt->sax);
        ^
/libxml2/HTMLparser.c:4537:20: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->inputMax = 1;
                   ^
/libxml2/HTMLparser.c:4541:22: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->standalone = -1;
                     ^
/libxml2/HTMLparser.c:4542:19: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->instate = XML_PARSER_START;
                  ^
/libxml2/HTMLparser.c:4545:50: warning: Survived: Replaced * with / [cxx_mul_to_div]
    ctxt->nodeTab = xmlMalloc(initialNodeTabSize * sizeof(htmlNodePtr));
                                                 ^
/libxml2/HTMLparser.c:4548:18: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->nodeNr = 0;
                 ^
/libxml2/HTMLparser.c:4549:19: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->nodeMax = initialNodeTabSize;
                  ^
/libxml2/HTMLparser.c:4553:50: warning: Survived: Replaced * with / [cxx_mul_to_div]
    ctxt->nameTab = xmlMalloc(initialNodeTabSize * sizeof(xmlChar *));
                                                 ^
/libxml2/HTMLparser.c:4556:18: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->nameNr = 0;
                 ^
/libxml2/HTMLparser.c:4557:19: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->nameMax = initialNodeTabSize;
                  ^
/libxml2/HTMLparser.c:4561:23: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->nodeInfoNr  = 0;
                      ^
/libxml2/HTMLparser.c:4562:23: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->nodeInfoMax = 0;
                      ^
/libxml2/HTMLparser.c:4565:22: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->wellFormed = 1;
                     ^
/libxml2/HTMLparser.c:4566:27: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->replaceEntities = 0;
                          ^
/libxml2/HTMLparser.c:4567:22: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->keepBlanks = xmlKeepBlanksDefaultValue;
                     ^
/libxml2/HTMLparser.c:4568:16: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->html = INSERT_INITIAL;
               ^
/libxml2/HTMLparser.c:4569:23: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->vctxt.flags = XML_VCTXT_USE_PCTXT;
                      ^
/libxml2/HTMLparser.c:4573:23: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->record_info = 0;
                      ^
/libxml2/HTMLparser.c:4574:20: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->validate = 0;
                   ^
/libxml2/HTMLparser.c:4575:22: warning: Survived: Replaced 'a = b' with 'a = 42' [cxx_assign_const]
    ctxt->checkIndex = 0;
                     ^
/libxml2/HTMLparser.c:4577:5: warning: Survived: Removed the call to the function [cxx_remove_void_call]
    xmlInitNodeInfoSeq(&ctxt->node_seq);
    ^
/libxml2/HTMLparser.c:4590:5: warning: Survived: Removed the call to the function [cxx_remove_void_call]
    xmlFreeParserCtxt(ctxt);
    ^
/libxml2/HTMLparser.c:4633:5: warning: Survived: Removed the call to the function [cxx_remove_void_call]
    xmlInitParser();
    ^
/libxml2/HTMLparser.c:4639:9: warning: Survived: Replaced call to a function with 42 [cxx_replace_scalar_call]
    if (htmlInitParserCtxt(ctxt, sax, userData) < 0) {
        ^
/libxml2/HTMLparser.c:4687:14: warning: Survived: Replaced <= with < [cxx_le_to_lt]
    if (size <= 0)
             ^
[info] Mutation score: 37%
[info] Total execution time: 5593ms
[info] Surviving mutants: 90