summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/tp/Makefile.tres
blob: 418e869553d12fde62ee7e1023e747c99ef4d99b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
# Makefile.tres generated by ./tp/maintain/regenerate_file_lists.pl.
#
test_tap_files_generated_list = \
  t/01use.t \
  t/02coverage.t \
  t/03coverage_braces.t \
  t/04verb.t \
  t/05paragraph.t \
  t/06columnfractions.t \
  t/08misc_commands.t \
  t/09indices.t \
  t/10menu.t \
  t/16raw.t \
  t/181quotation.t \
  t/18itemize.t \
  t/19def.t \
  t/20preformatted.t \
  t/21multitable.t \
  t/22xtable.t \
  t/25regions.t \
  t/27float.t \
  t/28heading.t \
  t/30sectioning.t \
  t/50value.t \
  t/55conditionals.t \
  t/57invalid_nestings.t \
  t/58alias.t \
  t/60macro.t \
  t/70value_and_macro.t \
  t/80include.t \
  t/91morecoverage.t \
  t/92formatting.t \
  t/93layout.t \
  t/94htmlxref.t \
  t/95moreindices.t \
  t/96moresectioning.t \
  t/accents.t \
  t/automatic_menus.t \
  t/automatic_nodes.t \
  t/converters_tests.t \
  t/do_master_menu.t \
  t/docbook_tests.t \
  t/html_tests.t \
  t/index_before_item.t \
  t/info_tests.t \
  t/languages.t \
  t/nodenormalization.t \
  t/paragraph.t \
  t/plaintext_tests.t \
  t/protect_character_in_texinfo.t \
  t/reference_to_text_in_tree.t \
  t/test_brace_count.t \
  t/test_fill_gaps_in_sectioning.t \
  t/test_is_content_empty.t \
  t/test_protect_hashchar_at_line_beginning.t \
  t/test_sort.t \
  t/test_tree_copy.t \
  t/xml_tests.t

test_files_generated_list = $(test_tap_files_generated_list) \
  t/results/alias/alias_table_command.pl \
  t/results/alias/bad_line.pl \
  t/results/alias/block_command_alias.pl \
  t/results/alias/simple.pl \
  t/results/columnfractions/empty.pl \
  t/results/columnfractions/empty_comment.pl \
  t/results/columnfractions/good.pl \
  t/results/columnfractions/good_comment.pl \
  t/results/columnfractions/good_space_comment.pl \
  t/results/columnfractions/invalid.pl \
  t/results/columnfractions/not_fraction.pl \
  t/results/columnfractions/out_of_multitable.pl \
  t/results/columnfractions/something_before_columnfractions.pl \
  t/results/columnfractions/wrong_command.pl \
  t/results/conditionals/additional_space_in_end_conditional.pl \
  t/results/conditionals/additional_space_in_end_conditional_expanded.pl \
  t/results/conditionals/bad_ifclear_argument.pl \
  t/results/conditionals/bad_ifset_argument.pl \
  t/results/conditionals/command_conditionals.pl \
  t/results/conditionals/command_conditionals_user_defined.pl \
  t/results/conditionals/commands_in_ifset.pl \
  t/results/conditionals/comment_on_ifset_line.pl \
  t/results/conditionals/conditional_not_closed.pl \
  t/results/conditionals/consecutive_conditionals.pl \
  t/results/conditionals/empty_ifclear.pl \
  t/results/conditionals/empty_ifset.pl \
  t/results/conditionals/empty_ifset_in_ifset_no_set.pl \
  t/results/conditionals/empty_ifset_in_ifset_set.pl \
  t/results/conditionals/empty_set_in_ifclear.pl \
  t/results/conditionals/empty_set_in_ifset.pl \
  t/results/conditionals/end_conditional_not_at_line_begining.pl \
  t/results/conditionals/end_ifset_in_format.pl \
  t/results/conditionals/false_format_not_closed.pl \
  t/results/conditionals/ifclear_in_ifset.pl \
  t/results/conditionals/ifclear_in_ifset_set.pl \
  t/results/conditionals/ifnot_format_conditional.pl \
  t/results/conditionals/ifnotinfo_exception.pl \
  t/results/conditionals/ifset_in_command.pl \
  t/results/conditionals/ignore_not_closed.pl \
  t/results/conditionals/ignored_in_ifset.pl \
  t/results/conditionals/info_ifinfo_ifnotplaintext.pl \
  t/results/conditionals/info_ifplaintext.pl \
  t/results/conditionals/inlineiffmtifelse_not_closed.pl \
  t/results/conditionals/inlineiffmtifelse_not_closed_three_arg.pl \
  t/results/conditionals/inlineiffmtifelse_not_closed_two_arg.pl \
  t/results/conditionals/inlineifset_false_not_closed.pl \
  t/results/conditionals/macro_in_ifset.pl \
  t/results/conditionals/macro_in_ifset_set.pl \
  t/results/conditionals/many_conditionals.pl \
  t/results/conditionals/nested_ifset_ifclear.pl \
  t/results/conditionals/nested_ignore.pl \
  t/results/conditionals/not_set.pl \
  t/results/conditionals/plaintext_ifinfo.pl \
  t/results/conditionals/plaintext_ifinfo_ifnotplaintext.pl \
  t/results/conditionals/superfluous_argument_to_end.pl \
  t/results/conditionals/text_on_conditional_line.pl \
  t/results/conditionals/text_on_conditional_line_expanded.pl \
  t/results/converters_tests/accent.pl \
  t/results/converters_tests/accent_with_text.pl \
  t/results/converters_tests/accentenc.pl \
  t/results/converters_tests/accentenc_enable_encoding.pl \
  t/results/converters_tests/accentenc_no_entity.pl \
  t/results/converters_tests/at_commands_in_raw.pl \
  t/results/converters_tests/at_commands_in_refs.pl \
  t/results/converters_tests/at_commands_in_refs_latin1.pl \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/----_0021---_002e--_002e-_003f-_0040.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/-_0040-_007b_007d-_002e-.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/-_007b-_007d.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/8_002e27in.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/AA-ae-oe-AE-OE-o-O-ss-l-L-D-d-TH-th.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/AAA-AAA-BBB.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/CCC-CCC-DDD.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/LaTeX-TeX-_2022-_002c-_00a9-_2026-_002e_002e_002e.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_0040-_007b-_007d-_005c-_0023.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_0060_0060-_0027_0027-_002d_002d_002d-_002d_002d-_0060-_0027.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_00aa-_00ba-_2605-_00a3-_22a3-_00bf-_00ae.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_00ab-_00bb-_00ab-_00bb-_2039-_203a.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_201c-_201d-_2018-_2019-_201e-_201a.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_21d2-_00b0-a-b--aa.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_2261-error_002d_002d_003e-_20ac-_00a1-_21a6-_2212.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/_2265-_2264-_2192.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/a-e-i-a-a-e-c-e-e-e-e.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/cite-asis-in-_0040w-b-in-r-SC-str-t-var-dfn-i.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/e-e-e-e-e-j-ee.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/env-code-option-samp-command-file-C_002dx-ESC.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/f_002d_002dile1-f_002d_002dile.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/gH-3rd.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/http_003a_002f_002fsomewhere_005faaa-url-_002fman_002ecgi_002f1_002fls.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/i-E-C.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/index.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/indicateurl.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/sansserif-slanted.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_html/someone_0040somewher-no_005fexplain_0040there.html \
  t/results/converters_tests/at_commands_in_refs_latin1/res_info/at_commands_in_refs_latin1.info \
  t/results/converters_tests/at_commands_in_refs_utf8.pl \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/----_0021---_002e--_002e-_003f-_0040.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/-_0040-_007b_007d-_002e-.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/-_007b-_007d.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/8_002e27in.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/AA-ae-oe-AE-OE-o-O-ss-l-L-D-d-TH-th.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/AAA-AAA-BBB.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/CCC-CCC-DDD.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/LaTeX-TeX-_2022-_002c-_00a9-_2026-_002e_002e_002e.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_0040-_007b-_007d-_005c-_0023.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_0060_0060-_0027_0027-_002d_002d_002d-_002d_002d-_0060-_0027.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_00aa-_00ba-_2605-_00a3-_22a3-_00bf-_00ae.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_00ab-_00bb-_00ab-_00bb-_2039-_203a.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_201c-_201d-_2018-_2019-_201e-_201a.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_21d2-_00b0-a-b--aa.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_2261-error_002d_002d_003e-_20ac-_00a1-_21a6-_2212.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/_2265-_2264-_2192.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/a-e-i-a-a-e-c-e-e-e-e.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/cite-asis-in-_0040w-b-in-r-SC-str-t-var-dfn-i.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/e-e-e-e-e-j-ee.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/env-code-option-samp-command-file-C_002dx-ESC.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/f_002d_002dile1-f_002d_002dile.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/gH-3rd.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/http_003a_002f_002fsomewhere_005faaa-url-_002fman_002ecgi_002f1_002fls.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/i-E-C.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/index.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/indicateurl.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/sansserif-slanted.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_html/someone_0040somewher-no_005fexplain_0040there.html \
  t/results/converters_tests/at_commands_in_refs_utf8/res_info/at_commands_in_refs_utf8.info \
  t/results/converters_tests/char_latin1_latin1_in_refs.pl \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_docbook/char_latin1_utf8_in_refs.xml \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_html/a-e-i-o-u-A-E-I-O-U.html \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_html/a-e-i-o-u-y-A-E-I-O-U.html \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_html/a-e-u.html \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_html/c.html \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_html/e.html \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_html/index.html \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_info/char_latin1_utf8_in_refs.info \
  t/results/converters_tests/char_latin1_latin1_in_refs/res_xml/char_latin1_utf8_in_refs.xml \
  t/results/converters_tests/char_latin1_utf8_in_refs.pl \
  t/results/converters_tests/char_latin1_utf8_in_refs/res_html/a-e-i-o-u-A-E-I-O-U.html \
  t/results/converters_tests/char_latin1_utf8_in_refs/res_html/a-e-i-o-u-y-A-E-I-O-U.html \
  t/results/converters_tests/char_latin1_utf8_in_refs/res_html/a-e-u.html \
  t/results/converters_tests/char_latin1_utf8_in_refs/res_html/c.html \
  t/results/converters_tests/char_latin1_utf8_in_refs/res_html/e.html \
  t/results/converters_tests/char_latin1_utf8_in_refs/res_html/index.html \
  t/results/converters_tests/char_latin1_utf8_in_refs/res_info/char_latin1_utf8_in_refs.info \
  t/results/converters_tests/char_latin2_latin2_in_refs.pl \
  t/results/converters_tests/char_latin2_latin2_in_refs/res_html/A-a-_002c-E-e.html \
  t/results/converters_tests/char_latin2_latin2_in_refs/res_html/index.html \
  t/results/converters_tests/char_latin2_latin2_in_refs/res_info/char_latin2_latin2_in_refs.info \
  t/results/converters_tests/complex_nestings.pl \
  t/results/converters_tests/documentencoding_utf8_and_insertions.pl \
  t/results/converters_tests/email_table_command_as_argument.pl \
  t/results/converters_tests/empty_accent.pl \
  t/results/converters_tests/enumerate_above_ten.pl \
  t/results/converters_tests/footnote_no_number.pl \
  t/results/converters_tests/footnote_no_number_separate.pl \
  t/results/converters_tests/image_extension.pl \
  t/results/converters_tests/image_formatting.pl \
  t/results/converters_tests/image_with_spaces.pl \
  t/results/converters_tests/index_entry_in_preformatted.pl \
  t/results/converters_tests/inline.pl \
  t/results/converters_tests/inline_expand_tex.pl \
  t/results/converters_tests/inlinefmtifelse.pl \
  t/results/converters_tests/inlineifsetifclear.pl \
  t/results/converters_tests/japanese_shift_jis.pl \
  t/results/converters_tests/japanese_shift_jis/res_html/Introduction.html \
  t/results/converters_tests/japanese_shift_jis/res_html/Preface.html \
  t/results/converters_tests/japanese_shift_jis/res_html/index.html \
  t/results/converters_tests/japanese_shift_jis/res_info/japanese_shift_jis.info \
  t/results/converters_tests/line_breaks.pl \
  t/results/converters_tests/no_documentencoding_and_insertions.pl \
  t/results/converters_tests/normal_font_in_monospace.pl \
  t/results/converters_tests/printindex_merged_indices_code_style.pl \
  t/results/converters_tests/raw_block_commands.pl \
  t/results/converters_tests/raw_block_commands_expand_tex.pl \
  t/results/converters_tests/ref_error_formatting.pl \
  t/results/converters_tests/ref_in_sectioning.pl \
  t/results/converters_tests/refs_formatting.pl \
  t/results/converters_tests/sample_utf8.pl \
  t/results/converters_tests/sample_utf8/res_html/DiYiZhang_0028First-Chapter_0029.html \
  t/results/converters_tests/sample_utf8/res_html/Index-node.html \
  t/results/converters_tests/sample_utf8/res_html/Second-Chapter-AE-AE-ae-ae.html \
  t/results/converters_tests/sample_utf8/res_html/index.html \
  t/results/converters_tests/sample_utf8/res_info/sample_utf8.info \
  t/results/converters_tests/some_at_commands_in_ref_nodes.pl \
  t/results/converters_tests/sp_in_example.pl \
  t/results/converters_tests/spaces_in_empty_node_names.pl \
  t/results/converters_tests/spaces_in_node_names.pl \
  t/results/converters_tests/table_in_display_in_example.pl \
  t/results/converters_tests/table_in_example_in_display.pl \
  t/results/converters_tests/test_deftypefnnewline.pl \
  t/results/converters_tests/test_sp.pl \
  t/results/converters_tests/things_before_setfilename.pl \
  t/results/converters_tests/things_before_setfilename_no_element.pl \
  t/results/converters_tests/top_in_ref.pl \
  t/results/converters_tests/top_in_ref_keep_top.pl \
  t/results/converters_tests/unknown_value.pl \
  t/results/converters_tests/verbatiminclude_paths.pl \
  t/results/converters_tests/weird_accents.pl \
  t/results/converters_tests/weird_accents_disable_encoding.pl \
  t/results/coverage/accent_and_dash.pl \
  t/results/coverage/accent_no_closed.pl \
  t/results/coverage/accent_no_closed_comment.pl \
  t/results/coverage/accent_no_closed_newline.pl \
  t/results/coverage/accent_no_closed_paragraph.pl \
  t/results/coverage/accents_errors.pl \
  t/results/coverage/arg_in_brace_no_arg_command.pl \
  t/results/coverage/at_after_accent_command.pl \
  t/results/coverage/block_commands.pl \
  t/results/coverage/cartouche.pl \
  t/results/coverage/cartouche_in_example.pl \
  t/results/coverage/cartouche_in_quotation.pl \
  t/results/coverage/center.pl \
  t/results/coverage/commands.pl \
  t/results/coverage/comment_on_cartouche_line.pl \
  t/results/coverage/comment_on_group_line.pl \
  t/results/coverage/def.pl \
  t/results/coverage/delcomment.pl \
  t/results/coverage/empty_w.pl \
  t/results/coverage/exdent_and_commands.pl \
  t/results/coverage/exdent_and_formats.pl \
  t/results/coverage/flushleft_flushright.pl \
  t/results/coverage/flushleft_flushright_in_quotation.pl \
  t/results/coverage/flushright_example_nested.pl \
  t/results/coverage/flushright_not_closed.pl \
  t/results/coverage/formats_only_title_comments.pl \
  t/results/coverage/formats_only_titles.pl \
  t/results/coverage/formats_titles.pl \
  t/results/coverage/group_beginning_and_end_on_line.pl \
  t/results/coverage/group_not_closed.pl \
  t/results/coverage/hyphenation.pl \
  t/results/coverage/indentedblock.pl \
  t/results/coverage/indicateurl_end_lines.pl \
  t/results/coverage/insertcopying.pl \
  t/results/coverage/invalid_U.pl \
  t/results/coverage/item_container.pl \
  t/results/coverage/lettered_accent_and_spaces.pl \
  t/results/coverage/math.pl \
  t/results/coverage/multitable.pl \
  t/results/coverage/nested_block_commands.pl \
  t/results/coverage/not_i_j_in_dotless.pl \
  t/results/coverage/preformatted.pl \
  t/results/coverage/punctuation_in_line_commands.pl \
  t/results/coverage/quotation_author.pl \
  t/results/coverage/raggedright.pl \
  t/results/coverage/setfilename_in_paragraph.pl \
  t/results/coverage/spaces_after_braced_command.pl \
  t/results/coverage/spaces_no_brace_after_braced_command.pl \
  t/results/coverage/symbol_after_block.pl \
  t/results/coverage/symbol_after_command.pl \
  t/results/coverage/table.pl \
  t/results/coverage/table_command_comment.pl \
  t/results/coverage/test_errormsg.pl \
  t/results/coverage/test_tie.pl \
  t/results/coverage/test_today.pl \
  t/results/coverage/titlefont_in_center.pl \
  t/results/coverage/unknown_accents.pl \
  t/results/coverage/unknown_commands.pl \
  t/results/coverage/verbatiminclude.pl \
  t/results/coverage_braces/abbr_acronym.pl \
  t/results/coverage_braces/anchor_not_closed.pl \
  t/results/coverage_braces/brace_opened_no_command.pl \
  t/results/coverage_braces/caption_not_closed.pl \
  t/results/coverage_braces/code_not_closed.pl \
  t/results/coverage_braces/email_possibilities.pl \
  t/results/coverage_braces/empty_commands.pl \
  t/results/coverage_braces/empty_images.pl \
  t/results/coverage_braces/empty_line_in_anchor.pl \
  t/results/coverage_braces/empty_ref.pl \
  t/results/coverage_braces/empty_second_email_argument.pl \
  t/results/coverage_braces/end_line_in_anchor.pl \
  t/results/coverage_braces/footnote.pl \
  t/results/coverage_braces/footnote_ending_on_empty_line.pl \
  t/results/coverage_braces/footnote_in_command_not_closed.pl \
  t/results/coverage_braces/footnote_no_node.pl \
  t/results/coverage_braces/footnote_not_closed.pl \
  t/results/coverage_braces/form_feed_in_brace_commands.pl \
  t/results/coverage_braces/format_on_first_footnote_line.pl \
  t/results/coverage_braces/heading_in_footnote.pl \
  t/results/coverage_braces/inforef_too_much_args.pl \
  t/results/coverage_braces/kbd.pl \
  t/results/coverage_braces/math_bracketed_inside_not_closed.pl \
  t/results/coverage_braces/math_bracketed_not_closed.pl \
  t/results/coverage_braces/math_bracketed_not_closed_next_line.pl \
  t/results/coverage_braces/math_not_closed.pl \
  t/results/coverage_braces/nested.pl \
  t/results/coverage_braces/nested_args.pl \
  t/results/coverage_braces/nested_in_sc.pl \
  t/results/coverage_braces/no_brace.pl \
  t/results/coverage_braces/no_brace_space_end_line.pl \
  t/results/coverage_braces/recursive_acronym.pl \
  t/results/coverage_braces/ref_empty_node.pl \
  t/results/coverage_braces/ref_in_style_command.pl \
  t/results/coverage_braces/simple.pl \
  t/results/coverage_braces/space_command_in_image.pl \
  t/results/coverage_braces/space_in_anchor.pl \
  t/results/coverage_braces/space_in_footnote.pl \
  t/results/coverage_braces/space_in_image.pl \
  t/results/coverage_braces/test_image.pl \
  t/results/coverage_braces/test_w.pl \
  t/results/coverage_braces/too_much_args.pl \
  t/results/coverage_braces/two_footnotes_in_nodes.pl \
  t/results/coverage_braces/two_footnotes_in_nodes_separate.pl \
  t/results/coverage_braces/unknown_command_with_braces.pl \
  t/results/coverage_braces/unmatched_brace.pl \
  t/results/coverage_braces/uref_in_ref.pl \
  t/results/coverage_braces/uref_url.pl \
  t/results/coverage_braces/verb_in_xref.pl \
  t/results/def/all_commands.pl \
  t/results/def/all_commands_delimiters.pl \
  t/results/def/all_commands_delimiters_printindex.pl \
  t/results/def/all_commands_printindex.pl \
  t/results/def/all_empty_def.pl \
  t/results/def/ampchar.pl \
  t/results/def/def_defx_mismatch.pl \
  t/results/def/defx_after_comment.pl \
  t/results/def/defx_after_comment_in_example.pl \
  t/results/def/defx_after_empty_line.pl \
  t/results/def/defx_after_empty_line_in_example.pl \
  t/results/def/defx_after_paragraph_end.pl \
  t/results/def/defx_after_preformatted_with_text.pl \
  t/results/def/defx_after_text.pl \
  t/results/def/defx_in_example.pl \
  t/results/def/double_command.pl \
  t/results/def/empty_def_arguments.pl \
  t/results/def/empty_def_command.pl \
  t/results/def/empty_deftype.pl \
  t/results/def/empty_deftypeop_name.pl \
  t/results/def/end_of_line_end_file.pl \
  t/results/def/end_of_line_protect_at_end.pl \
  t/results/def/end_of_lines_protected.pl \
  t/results/def/end_of_lines_protected_in_footnote.pl \
  t/results/def/inter_item_commands_in_def.pl \
  t/results/def/inter_item_commands_in_def_in_example.pl \
  t/results/def/leading_space_in_def_arg.pl \
  t/results/def/no_category_or_no_name.pl \
  t/results/def/not_closed.pl \
  t/results/def/protected_brace.pl \
  t/results/def/ref_in_def.pl \
  t/results/def/space_in_def_for_index.pl \
  t/results/def/wrong_braces_simple.pl \
  t/results/def/wrong_braces_with_end_of_lines.pl \
  t/results/docbook_tests/empty_quotation_with_arg_followed_by_quotation.pl \
  t/results/docbook_tests/special_docbook_unnumbered.pl \
  t/results/float/anchor_in_caption.pl \
  t/results/float/cindex_in_caption.pl \
  t/results/float/comment_space_comand_in_float.pl \
  t/results/float/complex_float.pl \
  t/results/float/empty_listoffloats.pl \
  t/results/float/empty_listoffloats_with_floats.pl \
  t/results/float/float_copying.pl \
  t/results/float/float_with_at_commands.pl \
  t/results/float/footnote_in_caption.pl \
  t/results/float/footnote_in_caption_and_error.pl \
  t/results/float/listoffloats_with_commands.pl \
  t/results/float/numbering_captions_listoffloats.pl \
  t/results/float/ref_to_float.pl \
  t/results/float/simple.pl \
  t/results/formatting/cond.pl \
  t/results/formatting/cond_ifhtml_ifinfo_iftex.pl \
  t/results/formatting/cond_info.pl \
  t/results/formatting/cond_info_ifhtml_ifinfo_iftex.pl \
  t/results/formatting/cond_info_no-ifhtml_no-ifinfo_no-iftex.pl \
  t/results/formatting/cond_no-ifhtml_no-ifinfo_no-iftex.pl \
  t/results/formatting/cond_xml.pl \
  t/results/formatting/defcondx_Dbar.pl \
  t/results/formatting/defcondx_Dbar/res_html/defxcond.html \
  t/results/formatting/defcondx_Ubar.pl \
  t/results/formatting/defcondx_Ubar/res_html/defxcond.html \
  t/results/formatting/direntry_dircategory_info_split.pl \
  t/results/formatting/direntry_dircategory_info_split/res_info/direntry_dircategory.info \
  t/results/formatting/direntry_dircategory_info_split/res_info/direntry_dircategory.info-1 \
  t/results/formatting/direntry_dircategory_info_split/res_info/direntry_dircategory.info-2 \
  t/results/formatting/documentlanguage_set_option.pl \
  t/results/formatting/documentlanguage_set_option/res_html/documentlanguage_set.html \
  t/results/formatting/documentlanguage_set_option_info.pl \
  t/results/formatting/documentlanguage_set_option_info/res_info/documentlanguage_set.info \
  t/results/formatting/documentlanguage_set_unknown.pl \
  t/results/formatting/documentlanguage_set_unknown/res_html/documentlanguage_set.html \
  t/results/formatting/empty.pl \
  t/results/formatting/float_copying.pl \
  t/results/formatting/float_copying/res_html/Copying-and-floats.html \
  t/results/formatting/float_copying/res_html/caption-copying-footnote-anchor.html \
  t/results/formatting/float_copying/res_html/float_copying_abt.html \
  t/results/formatting/float_copying/res_html/float_copying_fot.html \
  t/results/formatting/float_copying/res_html/index.html \
  t/results/formatting/float_copying/res_html/public-domain-anchor.html \
  t/results/formatting/float_copying/res_html/public-domain.html \
  t/results/formatting/one_line.pl \
  t/results/formatting/one_line_no_content.pl \
  t/results/formatting/simplest_test_date_in_header.pl \
  t/results/formatting/simplest_test_date_in_header/res_html/simplest.html \
  t/results/formatting/simplest_test_prefix.pl \
  t/results/formatting/simplest_test_prefix_info.pl \
  t/results/formatting/split_for_format_not_split.pl \
  t/results/formatting/split_for_format_not_split/res_xml/simplest.xml \
  t/results/formatting/split_nocopying.pl \
  t/results/formatting/split_nocopying/res_info/split-nocopying.info \
  t/results/formatting/split_nocopying_split.pl \
  t/results/formatting/split_nocopying_split/res_info/split-nocopying.info \
  t/results/formatting/split_nocopying_split/res_info/split-nocopying.info-1 \
  t/results/formatting/split_nocopying_split/res_info/split-nocopying.info-2 \
  t/results/formatting/texi_bib_example.pl \
  t/results/formatting/texi_cond.pl \
  t/results/formatting/texi_glossary.pl \
  t/results/heading/heading_in_copying.pl \
  t/results/heading/heading_in_example.pl \
  t/results/heading/heading_in_quotation.pl \
  t/results/html_tests/character_number_leading_toc_stoc.pl \
  t/results/html_tests/check_htmlxref.pl \
  t/results/html_tests/commands_in_abbr.pl \
  t/results/html_tests/commands_in_alt.pl \
  t/results/html_tests/commands_in_email.pl \
  t/results/html_tests/documentdescription.pl \
  t/results/html_tests/empty_lines_at_beginning_no_setfilename.pl \
  t/results/html_tests/empty_lines_at_beginning_no_setfilename_no_element.pl \
  t/results/html_tests/html_in_copying.pl \
  t/results/html_tests/image_link_prefix.pl \
  t/results/html_tests/index_and_node_same_name.pl \
  t/results/html_tests/index_below.pl \
  t/results/html_tests/no_use_iso.pl \
  t/results/html_tests/raw_html.pl \
  t/results/html_tests/redirection_same_labels.pl \
  t/results/html_tests/redirection_same_labels/res_html/circumflex.html \
  t/results/html_tests/redirection_same_labels/res_html/i.html \
  t/results/html_tests/redirection_same_labels/res_html/index.html \
  t/results/html_tests/redirection_same_labels/res_html/umlaut.html \
  t/results/html_tests/ref_in_preformatted.pl \
  t/results/html_tests/shortcontents_no_top.pl \
  t/results/html_tests/simple_menu.pl \
  t/results/html_tests/test_xrefautomaticsectiontitle.pl \
  t/results/html_tests/tex_expanded_in_copying.pl \
  t/results/html_tests/titles.pl \
  t/results/html_tests/utf8_enable_encoding.pl \
  t/results/html_tests/utf8_enable_encoding_no_use_iso.pl \
  t/results/html_tests/utf8_no_use_entity.pl \
  t/results/html_tests/utf8_no_use_entity_enable_encoding.pl \
  t/results/html_tests/utf8_no_use_entity_enable_encoding_no_use_iso.pl \
  t/results/html_tests/utf8_no_use_entity_no_use_iso.pl \
  t/results/html_tests/verbatim_in_multitable_in_example.pl \
  t/results/html_tests/xml_protected_in_verb.pl \
  t/results/htmlxref/htmlxref.pl \
  t/results/htmlxref/htmlxref/res_html/test_refs.html \
  t/results/htmlxref/htmlxref_nodes.pl \
  t/results/htmlxref/htmlxref_nodes/res_html/_0021_005f_0022_0023_0024_0025_0026_0027_0028_0029_002a_002b_002d_002e.html \
  t/results/htmlxref/htmlxref_nodes/res_html/_002f_003b_003c_003d_003e_003f_005b_005c_005d_005e_005f_0060_007c_007e.html \
  t/results/htmlxref/htmlxref_nodes/res_html/index.html \
  t/results/htmlxref/htmlxref_nodes/res_html/local-node.html \
  t/results/htmlxref/htmlxref_nodes/res_html/other-nodes.html \
  t/results/htmlxref/htmlxref_nodes/res_html/test_refs_abt.html \
  t/results/htmlxref/htmlxref_only_mono.pl \
  t/results/htmlxref/htmlxref_only_mono/res_html/test_refs.html \
  t/results/htmlxref/htmlxref_only_mono_nodes.pl \
  t/results/htmlxref/htmlxref_only_mono_nodes/res_html/_0021_005f_0022_0023_0024_0025_0026_0027_0028_0029_002a_002b_002d_002e.html \
  t/results/htmlxref/htmlxref_only_mono_nodes/res_html/_002f_003b_003c_003d_003e_003f_005b_005c_005d_005e_005f_0060_007c_007e.html \
  t/results/htmlxref/htmlxref_only_mono_nodes/res_html/index.html \
  t/results/htmlxref/htmlxref_only_mono_nodes/res_html/local-node.html \
  t/results/htmlxref/htmlxref_only_mono_nodes/res_html/other-nodes.html \
  t/results/htmlxref/htmlxref_only_mono_nodes/res_html/test_refs_abt.html \
  t/results/htmlxref/htmlxref_only_split.pl \
  t/results/htmlxref/htmlxref_only_split/res_html/test_refs.html \
  t/results/htmlxref/htmlxref_only_split_nodes.pl \
  t/results/htmlxref/htmlxref_only_split_nodes/res_html/_0021_005f_0022_0023_0024_0025_0026_0027_0028_0029_002a_002b_002d_002e.html \
  t/results/htmlxref/htmlxref_only_split_nodes/res_html/_002f_003b_003c_003d_003e_003f_005b_005c_005d_005e_005f_0060_007c_007e.html \
  t/results/htmlxref/htmlxref_only_split_nodes/res_html/index.html \
  t/results/htmlxref/htmlxref_only_split_nodes/res_html/local-node.html \
  t/results/htmlxref/htmlxref_only_split_nodes/res_html/other-nodes.html \
  t/results/htmlxref/htmlxref_only_split_nodes/res_html/test_refs_abt.html \
  t/results/include/cpp_lines.pl \
  t/results/include/double_include.pl \
  t/results/include/include_at_end_line.pl \
  t/results/include/include_comment.pl \
  t/results/include/include_setfilename_on_setfilename_line.pl \
  t/results/include/include_space.pl \
  t/results/include/include_space_comment.pl \
  t/results/include/include_with_setfilename.pl \
  t/results/include/macro_and_commands_in_early_commands.pl \
  t/results/include/macro_definition_in_include.pl \
  t/results/include/macro_in_early_commands.pl \
  t/results/include/no_eol_in_included_file.pl \
  t/results/include/simple.pl \
  t/results/include/simple_no_eol.pl \
  t/results/include/test_include_directories.pl \
  t/results/include/test_paths.pl \
  t/results/include/value_expansion_in_include.pl \
  t/results/include/verbatiminclude_and_encoding.pl \
  t/results/include/verbatiminclude_and_encoding_latin1.pl \
  t/results/indices/complex_recursive_synindex.pl \
  t/results/indices/def_existing_index.pl \
  t/results/indices/def_syn_indices.pl \
  t/results/indices/default_cp_index_and_one_letter_syncodeindex.pl \
  t/results/indices/double_index_entry.pl \
  t/results/indices/double_syncodeindex.pl \
  t/results/indices/empty_cindex_entry.pl \
  t/results/indices/empty_index_entry.pl \
  t/results/indices/empty_string_index_entry.pl \
  t/results/indices/encoding_index_ascii.pl \
  t/results/indices/encoding_index_ascii/res_html/index.html \
  t/results/indices/encoding_index_ascii/res_info/encoding_index_ascii.info \
  t/results/indices/encoding_index_ascii/res_plaintext/encoding_index_ascii.txt \
  t/results/indices/encoding_index_ascii_enable_encoding.pl \
  t/results/indices/encoding_index_ascii_enable_encoding/res_html/index.html \
  t/results/indices/encoding_index_ascii_enable_encoding/res_info/encoding_index_ascii_enable_encoding.info \
  t/results/indices/encoding_index_ascii_enable_encoding/res_plaintext/encoding_index_ascii_enable_encoding.txt \
  t/results/indices/encoding_index_latin1.pl \
  t/results/indices/encoding_index_latin1/res_html/index.html \
  t/results/indices/encoding_index_latin1/res_info/encoding_index_latin1.info \
  t/results/indices/encoding_index_latin1/res_plaintext/encoding_index_latin1.txt \
  t/results/indices/encoding_index_latin1_enable_encoding.pl \
  t/results/indices/encoding_index_latin1_enable_encoding/res_html/index.html \
  t/results/indices/encoding_index_latin1_enable_encoding/res_info/encoding_index_latin1_enable_encoding.info \
  t/results/indices/encoding_index_latin1_enable_encoding/res_plaintext/encoding_index_latin1_enable_encoding.txt \
  t/results/indices/encoding_index_utf8.pl \
  t/results/indices/encoding_index_utf8/res_html/index.html \
  t/results/indices/encoding_index_utf8/res_info/encoding_index_utf8.info \
  t/results/indices/encoding_index_utf8/res_plaintext/encoding_index_utf8.txt \
  t/results/indices/encoding_index_utf8_enable_encoding.pl \
  t/results/indices/encoding_index_utf8_enable_encoding/res_html/index.html \
  t/results/indices/encoding_index_utf8_enable_encoding/res_info/encoding_index_utf8_enable_encoding.info \
  t/results/indices/encoding_index_utf8_enable_encoding/res_plaintext/encoding_index_utf8_enable_encoding.txt \
  t/results/indices/explicit_sort_key.pl \
  t/results/indices/ftable_vtable.pl \
  t/results/indices/image_lines_count.pl \
  t/results/indices/image_text_lines_count.pl \
  t/results/indices/index_entries_locations.pl \
  t/results/indices/index_entry_before_first_node.pl \
  t/results/indices/index_entry_before_node.pl \
  t/results/indices/index_entry_in_footnote.pl \
  t/results/indices/index_entry_in_footnote_different_node_end.pl \
  t/results/indices/index_entry_in_footnote_separate.pl \
  t/results/indices/print_merged_index.pl \
  t/results/indices/printindex_before_document.pl \
  t/results/indices/printindex_index_entry_in_copying.pl \
  t/results/indices/printindex_index_entry_in_copying_in_footnote.pl \
  t/results/indices/printindex_index_entry_in_copying_no_insertcopying.pl \
  t/results/indices/printindex_with_space_before.pl \
  t/results/indices/recursive_synindex.pl \
  t/results/indices/same_index_entry_merged_indices.pl \
  t/results/indices/seeentry.pl \
  t/results/indices/subentries.pl \
  t/results/indices/subentry_and_sortas.pl \
  t/results/indices/syncode_index_print_both.pl \
  t/results/indices/syncodeindex_to_plain.pl \
  t/results/indices/unknown_index_entry.pl \
  t/results/indices/unknown_printindex.pl \
  t/results/indices/unknown_synindex.pl \
  t/results/indices/unknown_then_known_index_entry.pl \
  t/results/indices/wrong_synindex.pl \
  t/results/info_tests/anchor_and_spaces.pl \
  t/results/info_tests/anchor_in_command.pl \
  t/results/info_tests/before_node_and_section.pl \
  t/results/info_tests/center_flush.pl \
  t/results/info_tests/colon_in_index_entry.pl \
  t/results/info_tests/contents_setcontentsaftertitlepage_before_node.pl \
  t/results/info_tests/def_in_copying.pl \
  t/results/info_tests/direntry_dircategory_and_commands.pl \
  t/results/info_tests/encoding_us_ascii.pl \
  t/results/info_tests/error_in_footnote.pl \
  t/results/info_tests/file_only_png.pl \
  t/results/info_tests/float_long_captions.pl \
  t/results/info_tests/image_and_punctuation.pl \
  t/results/info_tests/image_and_spaces_formatting.pl \
  t/results/info_tests/image_extension.pl \
  t/results/info_tests/image_file_search.pl \
  t/results/info_tests/image_in_paragraph.pl \
  t/results/info_tests/image_not_found.pl \
  t/results/info_tests/image_quotes.pl \
  t/results/info_tests/image_text_encoded.pl \
  t/results/info_tests/index_entry_at_end_node.pl \
  t/results/info_tests/invalid_node_name_no_warning.pl \
  t/results/info_tests/invalid_node_name_warning.pl \
  t/results/info_tests/known_encoding.pl \
  t/results/info_tests/multiline_image_and_align.pl \
  t/results/info_tests/multitable_anchor_and_index_entry.pl \
  t/results/info_tests/nested_footnotes_separate.pl \
  t/results/info_tests/nested_multitable_anchor_index.pl \
  t/results/info_tests/no_node_but_top.pl \
  t/results/info_tests/no_nodes.pl \
  t/results/info_tests/no_top_node.pl \
  t/results/info_tests/note_in_strong.pl \
  t/results/info_tests/note_in_strong_end_of_line.pl \
  t/results/info_tests/novalidate_empty_refs.pl \
  t/results/info_tests/only_documentencoding.pl \
  t/results/info_tests/paragraphindent_and_preamble.pl \
  t/results/info_tests/paragraphindent_asis_first.pl \
  t/results/info_tests/paragraphindent_none_first.pl \
  t/results/info_tests/pxref_test.pl \
  t/results/info_tests/ref_tests.pl \
  t/results/info_tests/space_at_menu_end.pl \
  t/results/info_tests/space_in_menu.pl \
  t/results/info_tests/space_in_setfilename.pl \
  t/results/info_tests/split_no_copying.pl \
  t/results/info_tests/split_test_before_first_node.pl \
  t/results/info_tests/split_test_before_first_node/res_info/split_test_before_first_node.info \
  t/results/info_tests/split_test_before_first_node/res_info/split_test_before_first_node.info-1 \
  t/results/info_tests/split_test_before_first_node/res_info/split_test_before_first_node.info-2 \
  t/results/info_tests/split_test_before_first_node_no_empty_line.pl \
  t/results/info_tests/split_test_before_first_node_no_empty_line/res_info/split_test_before_first_node.info \
  t/results/info_tests/split_test_before_first_node_no_empty_line/res_info/split_test_before_first_node.info-1 \
  t/results/info_tests/split_test_before_first_node_no_empty_line/res_info/split_test_before_first_node.info-2 \
  t/results/info_tests/test_index.pl \
  t/results/info_tests/text_before_node.pl \
  t/results/info_tests/top_node_normalization.pl \
  t/results/info_tests/unknown_encoding.pl \
  t/results/info_tests/xref_test.pl \
  t/results/invalid_nestings/accents.pl \
  t/results/invalid_nestings/bad_style_nesting.pl \
  t/results/invalid_nestings/bad_tab_nesting.pl \
  t/results/invalid_nestings/block_not_matching.pl \
  t/results/invalid_nestings/cartouche_in_style_command.pl \
  t/results/invalid_nestings/center.pl \
  t/results/invalid_nestings/def_in_style_command.pl \
  t/results/invalid_nestings/def_not_closed_in_menu_description.pl \
  t/results/invalid_nestings/enumerate_in_style_command.pl \
  t/results/invalid_nestings/example_in_style_command.pl \
  t/results/invalid_nestings/float_in_style_command.pl \
  t/results/invalid_nestings/flushright_in_style_command.pl \
  t/results/invalid_nestings/footnote_in_ref.pl \
  t/results/invalid_nestings/formats_not_closed_in_example.pl \
  t/results/invalid_nestings/ignore_in_xref.pl \
  t/results/invalid_nestings/ignored_text.pl \
  t/results/invalid_nestings/in_errormsg.pl \
  t/results/invalid_nestings/in_table.pl \
  t/results/invalid_nestings/item_in_ref.pl \
  t/results/invalid_nestings/item_tab_outside_of_table_lists.pl \
  t/results/invalid_nestings/itemx_in_itemize_enumerate_in_table.pl \
  t/results/invalid_nestings/menu_in_style_command.pl \
  t/results/invalid_nestings/multitable_in_style_command.pl \
  t/results/invalid_nestings/multitable_item_in_index.pl \
  t/results/invalid_nestings/node_in_copying.pl \
  t/results/invalid_nestings/node_in_copying_not_closed.pl \
  t/results/invalid_nestings/node_on_index_entry_line.pl \
  t/results/invalid_nestings/on_block_command_line.pl \
  t/results/invalid_nestings/on_def_line.pl \
  t/results/invalid_nestings/on_index_entry_line.pl \
  t/results/invalid_nestings/on_itemize_line.pl \
  t/results/invalid_nestings/on_node_line.pl \
  t/results/invalid_nestings/on_section_line.pl \
  t/results/invalid_nestings/on_subheading_line.pl \
  t/results/invalid_nestings/quotation_in_ref.pl \
  t/results/invalid_nestings/quotation_in_style_command.pl \
  t/results/invalid_nestings/raw_block_on_line.pl \
  t/results/invalid_nestings/recursive_copying.pl \
  t/results/invalid_nestings/ref_in_anchor.pl \
  t/results/invalid_nestings/ref_in_ref.pl \
  t/results/invalid_nestings/section_in_copying.pl \
  t/results/invalid_nestings/section_in_flushright.pl \
  t/results/invalid_nestings/section_in_footnote.pl \
  t/results/invalid_nestings/section_in_math.pl \
  t/results/invalid_nestings/section_in_nested_block_commands.pl \
  t/results/invalid_nestings/section_in_table.pl \
  t/results/invalid_nestings/section_on_def_line.pl \
  t/results/invalid_nestings/section_on_defx_line.pl \
  t/results/invalid_nestings/section_on_index_entry_line.pl \
  t/results/invalid_nestings/style_not_closed_before_first_node.pl \
  t/results/invalid_nestings/style_not_closed_in_block_command.pl \
  t/results/invalid_nestings/style_not_closed_in_table_line.pl \
  t/results/invalid_nestings/style_not_closed_no_newline_root_commands.pl \
  t/results/invalid_nestings/style_not_closed_root_commands.pl \
  t/results/invalid_nestings/tab_in_index.pl \
  t/results/invalid_nestings/table_in_code.pl \
  t/results/invalid_nestings/table_not_closed_in_menu_comment.pl \
  t/results/invalid_nestings/table_not_closed_in_menu_description.pl \
  t/results/invalid_nestings/table_on_item_line.pl \
  t/results/invalid_nestings/unclosed_verb_end_of_line_on_misc_line.pl \
  t/results/invalid_nestings/unclosed_verb_on_misc_line.pl \
  t/results/invalid_nestings/unclosed_verb_on_section_line.pl \
  t/results/invalid_nestings/verbatim_in_ref.pl \
  t/results/itemize/accent_argument.pl \
  t/results/itemize/asis_as_itemize_argument.pl \
  t/results/itemize/bad_enumerate_arguments.pl \
  t/results/itemize/comment_first_on_enumerate_line.pl \
  t/results/itemize/comment_first_on_itemize_line.pl \
  t/results/itemize/enumerate_and_empty_lines.pl \
  t/results/itemize/enumerate_argument.pl \
  t/results/itemize/enumerate_argument_item.pl \
  t/results/itemize/enumerate_in_example.pl \
  t/results/itemize/enumerate_letters.pl \
  t/results/itemize/headitem_itemx_in_enumerate.pl \
  t/results/itemize/headitem_itemx_in_itemize.pl \
  t/results/itemize/inter_item_commands_in_enumerate.pl \
  t/results/itemize/inter_item_commands_in_itemize.pl \
  t/results/itemize/itemize_and_empty_lines.pl \
  t/results/itemize/itemize_in_example.pl \
  t/results/itemize/itemize_line_commands_with_brace.pl \
  t/results/itemize/itemize_long_item.pl \
  t/results/itemize/lone_end_itemize.pl \
  t/results/itemize/not_closed_item.pl \
  t/results/itemize/not_closed_itemize.pl \
  t/results/itemize/table_in_itemize.pl \
  t/results/itemize/w_argument.pl \
  t/results/languages/appendix_translated.pl \
  t/results/languages/command_translated.pl \
  t/results/languages/multiple.pl \
  t/results/languages/multiple_lang_chapters.pl \
  t/results/languages/multiple_lang_chapters/res_html/multiple_lang_chapters.html \
  t/results/languages/multiple_lang_chapters/res_info/multiple_lang_chapters.info \
  t/results/languages/multiple_lang_chapters_texi2html.pl \
  t/results/languages/multiple_lang_chapters_texi2html/res_html/multiple_lang_chapters.html \
  t/results/languages/multiple_lang_chapters_texi2html/res_info/multiple_lang_chapters.info \
  t/results/languages/simple.pl \
  t/results/languages/unknown_language.pl \
  t/results/languages/unknown_region.pl \
  t/results/layout/navigation.pl \
  t/results/layout/navigation/res_html/navigation.html \
  t/results/layout/navigation_chapter.pl \
  t/results/layout/navigation_chapter/res_html/chapter.html \
  t/results/layout/navigation_chapter/res_html/index.html \
  t/results/layout/navigation_chapter/res_html/navigation_abt.html \
  t/results/layout/navigation_chapter/res_html/navigation_toc.html \
  t/results/layout/navigation_chapter/res_html/section.html \
  t/results/layout/navigation_chapter/res_html/subsection.html \
  t/results/layout/navigation_chapter_no_header.pl \
  t/results/layout/navigation_chapter_no_header/res_html/chapter.html \
  t/results/layout/navigation_chapter_no_header/res_html/index.html \
  t/results/layout/navigation_chapter_no_header/res_html/navigation_abt.html \
  t/results/layout/navigation_chapter_no_header/res_html/navigation_toc.html \
  t/results/layout/navigation_chapter_no_header/res_html/section.html \
  t/results/layout/navigation_chapter_no_header/res_html/subsection.html \
  t/results/layout/navigation_chapter_no_header_vertical.pl \
  t/results/layout/navigation_chapter_no_header_vertical/res_html/chapter.html \
  t/results/layout/navigation_chapter_no_header_vertical/res_html/index.html \
  t/results/layout/navigation_chapter_no_header_vertical/res_html/navigation_abt.html \
  t/results/layout/navigation_chapter_no_header_vertical/res_html/navigation_toc.html \
  t/results/layout/navigation_chapter_no_header_vertical/res_html/section.html \
  t/results/layout/navigation_chapter_no_header_vertical/res_html/subsection.html \
  t/results/layout/navigation_chapter_vertical.pl \
  t/results/layout/navigation_chapter_vertical/res_html/chapter.html \
  t/results/layout/navigation_chapter_vertical/res_html/index.html \
  t/results/layout/navigation_chapter_vertical/res_html/navigation_abt.html \
  t/results/layout/navigation_chapter_vertical/res_html/navigation_toc.html \
  t/results/layout/navigation_chapter_vertical/res_html/section.html \
  t/results/layout/navigation_chapter_vertical/res_html/subsection.html \
  t/results/layout/navigation_no_header.pl \
  t/results/layout/navigation_no_header/res_html/navigation.html \
  t/results/layout/navigation_no_header_vertical.pl \
  t/results/layout/navigation_no_header_vertical/res_html/navigation.html \
  t/results/layout/navigation_node.pl \
  t/results/layout/navigation_node/res_html/chapter.html \
  t/results/layout/navigation_node/res_html/index.html \
  t/results/layout/navigation_node/res_html/navigation_abt.html \
  t/results/layout/navigation_node/res_html/navigation_toc.html \
  t/results/layout/navigation_node/res_html/section.html \
  t/results/layout/navigation_node/res_html/subsection.html \
  t/results/layout/navigation_node_no_header.pl \
  t/results/layout/navigation_node_no_header/res_html/chapter.html \
  t/results/layout/navigation_node_no_header/res_html/index.html \
  t/results/layout/navigation_node_no_header/res_html/navigation_abt.html \
  t/results/layout/navigation_node_no_header/res_html/navigation_toc.html \
  t/results/layout/navigation_node_no_header/res_html/section.html \
  t/results/layout/navigation_node_no_header/res_html/subsection.html \
  t/results/layout/navigation_node_no_header_vertical.pl \
  t/results/layout/navigation_node_no_header_vertical/res_html/chapter.html \
  t/results/layout/navigation_node_no_header_vertical/res_html/index.html \
  t/results/layout/navigation_node_no_header_vertical/res_html/navigation_abt.html \
  t/results/layout/navigation_node_no_header_vertical/res_html/navigation_toc.html \
  t/results/layout/navigation_node_no_header_vertical/res_html/section.html \
  t/results/layout/navigation_node_no_header_vertical/res_html/subsection.html \
  t/results/layout/navigation_node_vertical.pl \
  t/results/layout/navigation_node_vertical/res_html/chapter.html \
  t/results/layout/navigation_node_vertical/res_html/index.html \
  t/results/layout/navigation_node_vertical/res_html/navigation_abt.html \
  t/results/layout/navigation_node_vertical/res_html/navigation_toc.html \
  t/results/layout/navigation_node_vertical/res_html/section.html \
  t/results/layout/navigation_node_vertical/res_html/subsection.html \
  t/results/layout/navigation_section.pl \
  t/results/layout/navigation_section/res_html/chapter.html \
  t/results/layout/navigation_section/res_html/index.html \
  t/results/layout/navigation_section/res_html/navigation_abt.html \
  t/results/layout/navigation_section/res_html/navigation_toc.html \
  t/results/layout/navigation_section/res_html/section.html \
  t/results/layout/navigation_section/res_html/subsection.html \
  t/results/layout/navigation_section_no_header.pl \
  t/results/layout/navigation_section_no_header/res_html/chapter.html \
  t/results/layout/navigation_section_no_header/res_html/index.html \
  t/results/layout/navigation_section_no_header/res_html/navigation_abt.html \
  t/results/layout/navigation_section_no_header/res_html/navigation_toc.html \
  t/results/layout/navigation_section_no_header/res_html/section.html \
  t/results/layout/navigation_section_no_header/res_html/subsection.html \
  t/results/layout/navigation_section_no_header_vertical.pl \
  t/results/layout/navigation_section_no_header_vertical/res_html/chapter.html \
  t/results/layout/navigation_section_no_header_vertical/res_html/index.html \
  t/results/layout/navigation_section_no_header_vertical/res_html/navigation_abt.html \
  t/results/layout/navigation_section_no_header_vertical/res_html/navigation_toc.html \
  t/results/layout/navigation_section_no_header_vertical/res_html/section.html \
  t/results/layout/navigation_section_no_header_vertical/res_html/subsection.html \
  t/results/layout/navigation_section_vertical.pl \
  t/results/layout/navigation_section_vertical/res_html/chapter.html \
  t/results/layout/navigation_section_vertical/res_html/index.html \
  t/results/layout/navigation_section_vertical/res_html/navigation_abt.html \
  t/results/layout/navigation_section_vertical/res_html/navigation_toc.html \
  t/results/layout/navigation_section_vertical/res_html/section.html \
  t/results/layout/navigation_section_vertical/res_html/subsection.html \
  t/results/layout/navigation_vertical.pl \
  t/results/layout/navigation_vertical/res_html/navigation.html \
  t/results/layout/no_monolithic.pl \
  t/results/layout/no_monolithic/res_html/no_monolithic.html \
  t/results/layout/no_monolithic/res_html/no_monolithic_abt.html \
  t/results/layout/no_monolithic/res_html/no_monolithic_fot.html \
  t/results/layout/no_monolithic/res_html/no_monolithic_ovr.html \
  t/results/layout/no_monolithic/res_html/no_monolithic_toc.html \
  t/results/macro/arg_body_expansion_order.pl \
  t/results/macro/arg_not_closed.pl \
  t/results/macro/backslash_in_arg.pl \
  t/results/macro/bad_argument.pl \
  t/results/macro/bad_formal_arg.pl \
  t/results/macro/bad_macro_name_with_underscore.pl \
  t/results/macro/complete_macro_for_end.pl \
  t/results/macro/complex_argument.pl \
  t/results/macro/double_macro_definition.pl \
  t/results/macro/double_recursive_macro_call.pl \
  t/results/macro/empty_end.pl \
  t/results/macro/empty_macro_argument.pl \
  t/results/macro/empty_macro_in_text_no_arg.pl \
  t/results/macro/empty_macro_no_arg.pl \
  t/results/macro/expand_two_same.pl \
  t/results/macro/expansion_order.pl \
  t/results/macro/form_feeds.pl \
  t/results/macro/ifclear_in_macro.pl \
  t/results/macro/ifset_and_end_isef_in_macro.pl \
  t/results/macro/ifset_in_macro.pl \
  t/results/macro/ifset_in_macro_set.pl \
  t/results/macro/ignored_macro_definition.pl \
  t/results/macro/implicit_quoting_one_arg.pl \
  t/results/macro/implicit_quoting_recursion.pl \
  t/results/macro/leading_spaces_no_ignore.pl \
  t/results/macro/line_after_recursive_call.pl \
  t/results/macro/macro_expands_to_empty.pl \
  t/results/macro/macro_expansion.pl \
  t/results/macro/macro_for_end.pl \
  t/results/macro/macro_for_ignored_line_command.pl \
  t/results/macro/macro_in_accent.pl \
  t/results/macro/macro_in_brace_command.pl \
  t/results/macro/macro_in_end_argument.pl \
  t/results/macro/macro_in_ifset.pl \
  t/results/macro/macro_in_ifset_end_in_arg.pl \
  t/results/macro/macro_in_index_commands.pl \
  t/results/macro/macro_in_invalid_documentencoding.pl \
  t/results/macro/macro_in_macro_arg.pl \
  t/results/macro/macro_in_macro_arg_simpler.pl \
  t/results/macro/macro_in_menu.pl \
  t/results/macro/macro_in_misc_commands.pl \
  t/results/macro/macro_name_with_digit.pl \
  t/results/macro/macro_name_with_hyphen.pl \
  t/results/macro/macro_no_arg_bad_expansion.pl \
  t/results/macro/macro_no_arg_expansion.pl \
  t/results/macro/macro_no_argument.pl \
  t/results/macro/macro_not_closed.pl \
  t/results/macro/macro_one_arg_end_of_file.pl \
  t/results/macro/macro_with_error_at_end_line_after_macro.pl \
  t/results/macro/macro_zero.pl \
  t/results/macro/nested_macro_call.pl \
  t/results/macro/no_macrobody.pl \
  t/results/macro/paragraph_and_macro.pl \
  t/results/macro/protect_comma_macro_line.pl \
  t/results/macro/protect_in_body.pl \
  t/results/macro/protect_in_body_line_arg.pl \
  t/results/macro/protect_in_body_one_arg.pl \
  t/results/macro/recursive_call_in_argument.pl \
  t/results/macro/recursive_call_in_macro.pl \
  t/results/macro/redefine_texinfo_macro.pl \
  t/results/macro/simple_imbricated_macro.pl \
  t/results/macro/space_macro_after_end.pl \
  t/results/macro/space_macro_after_end_verbatim.pl \
  t/results/macro/text_before_after.pl \
  t/results/macro/too_much_args.pl \
  t/results/macro/two_macros_on_a_line.pl \
  t/results/macro/unknown_macro_on_line_command.pl \
  t/results/macro/zero_argument.pl \
  t/results/menu/bad_beginning.pl \
  t/results/menu/block_commands_in_menu_description.pl \
  t/results/menu/comment_on_menu_line.pl \
  t/results/menu/dash_in_menu.pl \
  t/results/menu/detailmenu.pl \
  t/results/menu/detailmenu_in_description.pl \
  t/results/menu/detailmenu_on_subnodes.pl \
  t/results/menu/detailmenu_unknown_node.pl \
  t/results/menu/direntry_dircategory_after_first_node.pl \
  t/results/menu/empty_menu_entry_name.pl \
  t/results/menu/entry_after_detailmenu.pl \
  t/results/menu/example_in_menu_comment.pl \
  t/results/menu/example_in_menu_description.pl \
  t/results/menu/formats_in_menu.pl \
  t/results/menu/inlineraw_in_menu_description.pl \
  t/results/menu/invalid_info_menu_entry.pl \
  t/results/menu/menu_entry_name.pl \
  t/results/menu/menu_entry_name_comment.pl \
  t/results/menu/menu_entry_no_entry.pl \
  t/results/menu/menu_entry_no_entry_location.pl \
  t/results/menu/menu_entry_node.pl \
  t/results/menu/menu_entry_node_comments.pl \
  t/results/menu/menu_in_deffn.pl \
  t/results/menu/menu_in_example.pl \
  t/results/menu/menu_no_closed_after_empty_line.pl \
  t/results/menu/menu_no_closed_entry_beginning.pl \
  t/results/menu/menu_no_closed_in_description.pl \
  t/results/menu/menu_no_closed_in_entry.pl \
  t/results/menu/menu_no_closed_star.pl \
  t/results/menu/menu_pointing_to_anchor.pl \
  t/results/menu/menu_title_before_entries.pl \
  t/results/menu/multiple_menus.pl \
  t/results/menu/no_colon_in_menu.pl \
  t/results/menu/reference_to_external_manual.pl \
  t/results/menu/sc_in_menu.pl \
  t/results/menu/simple.pl \
  t/results/menu/simple_no_menu.pl \
  t/results/menu/verb_in_menu_description.pl \
  t/results/misc_commands/also_not_line.pl \
  t/results/misc_commands/author_outside_titlepage_quotation.pl \
  t/results/misc_commands/bad_documentlanguage.pl \
  t/results/misc_commands/bye.pl \
  t/results/misc_commands/clickstyle.pl \
  t/results/misc_commands/codequoteundirected_codequotebacktick.pl \
  t/results/misc_commands/command_in_heading_footing.pl \
  t/results/misc_commands/command_line_in_paragraph.pl \
  t/results/misc_commands/command_not_closed_in_documentencoding.pl \
  t/results/misc_commands/comment_space_command_on_line.pl \
  t/results/misc_commands/comments_in_text.pl \
  t/results/misc_commands/contents.pl \
  t/results/misc_commands/defindex_too_much_args.pl \
  t/results/misc_commands/definfoenclose.pl \
  t/results/misc_commands/definfoenclose_with_empty_arg.pl \
  t/results/misc_commands/double_exdent.pl \
  t/results/misc_commands/empty_center.pl \
  t/results/misc_commands/empty_center_with_arg.pl \
  t/results/misc_commands/empty_documentencoding.pl \
  t/results/misc_commands/footnote_in_center.pl \
  t/results/misc_commands/incorrect_allowcodebreaks_argument.pl \
  t/results/misc_commands/indent_in_quotation.pl \
  t/results/misc_commands/index_entries.pl \
  t/results/misc_commands/invalid_clickstyle.pl \
  t/results/misc_commands/invalid_documentencoding.pl \
  t/results/misc_commands/invalid_kbdinputstyle.pl \
  t/results/misc_commands/kbdinputstyle.pl \
  t/results/misc_commands/many_lines.pl \
  t/results/misc_commands/no_empty_line_between_headings.pl \
  t/results/misc_commands/noindent_after_smallexample.pl \
  t/results/misc_commands/noindent_in_paragraph.pl \
  t/results/misc_commands/noindent_indent.pl \
  t/results/misc_commands/ref_in_center.pl \
  t/results/misc_commands/setfilename.pl \
  t/results/misc_commands/simple.pl \
  t/results/misc_commands/sp.pl \
  t/results/misc_commands/synindex_too_much_args.pl \
  t/results/misc_commands/test_allowcodebreaks.pl \
  t/results/misc_commands/text_before_and_after_bye.pl \
  t/results/misc_commands/text_before_line_command.pl \
  t/results/misc_commands/vskip.pl \
  t/results/morecoverage/formatting_fr.pl \
  t/results/morecoverage/texi_formatting.pl \
  t/results/moreindices/double_index_entry.pl \
  t/results/moreindices/double_index_entry/res_html/double_index_entry.html \
  t/results/moreindices/index_no_node.pl \
  t/results/moreindices/index_no_node/res_html/Chapter-2.html \
  t/results/moreindices/index_no_node/res_html/Chapter.html \
  t/results/moreindices/index_no_node/res_html/index.html \
  t/results/moreindices/index_no_node/res_html/index_no_node_abt.html \
  t/results/moreindices/index_no_node/res_html/unnumbered.html \
  t/results/moreindices/index_split.pl \
  t/results/moreindices/index_split/res_html/first.html \
  t/results/moreindices/index_split/res_html/index.html \
  t/results/moreindices/index_split/res_html/index_split_abt.html \
  t/results/moreindices/index_split/res_html/node-2-in-section-3.html \
  t/results/moreindices/index_split/res_html/node-3-in-section-3.html \
  t/results/moreindices/index_split/res_html/node-in-section-3.html \
  t/results/moreindices/index_split/res_html/second-chapter.html \
  t/results/moreindices/index_split/res_html/section-1.html \
  t/results/moreindices/index_split/res_html/section-2.html \
  t/results/moreindices/index_split/res_html/section-3.html \
  t/results/moreindices/index_split/res_html/subsection-1.html \
  t/results/moreindices/index_split/res_html/subsection-2.html \
  t/results/moreindices/index_split_nodes.pl \
  t/results/moreindices/index_split_nodes/res_html/first.html \
  t/results/moreindices/index_split_nodes/res_html/index.html \
  t/results/moreindices/index_split_nodes/res_html/index_split_abt.html \
  t/results/moreindices/index_split_nodes/res_html/node-2-in-section-3.html \
  t/results/moreindices/index_split_nodes/res_html/node-3-in-section-3.html \
  t/results/moreindices/index_split_nodes/res_html/node-in-section-3.html \
  t/results/moreindices/index_split_nodes/res_html/second-chapter.html \
  t/results/moreindices/index_split_nodes/res_html/section-1.html \
  t/results/moreindices/index_split_nodes/res_html/section-2.html \
  t/results/moreindices/index_split_nodes/res_html/section-3.html \
  t/results/moreindices/index_split_nodes/res_html/subsection-1.html \
  t/results/moreindices/index_split_nodes/res_html/subsection-2.html \
  t/results/moreindices/nodes_before_top.pl \
  t/results/moreindices/nodes_before_top/res_html/a-node.html \
  t/results/moreindices/nodes_before_top/res_html/another.html \
  t/results/moreindices/nodes_before_top/res_html/first-before-top.html \
  t/results/moreindices/nodes_before_top/res_html/first.html \
  t/results/moreindices/nodes_before_top/res_html/index.html \
  t/results/moreindices/nodes_before_top/res_html/node-in-menu-before-top.html \
  t/results/moreindices/nodes_before_top/res_html/nodes_before_top_abt.html \
  t/results/moreindices/nodes_before_top/res_html/second.html \
  t/results/moreindices/nodes_before_top_and_sections_monolithic.pl \
  t/results/moreindices/nodes_before_top_and_sections_monolithic/res_html/nodes_before_top_and_sections.html \
  t/results/moreindices/nodes_before_top_no_nodes.pl \
  t/results/moreindices/nodes_before_top_no_nodes/res_html/a-node.html \
  t/results/moreindices/nodes_before_top_no_nodes/res_html/another.html \
  t/results/moreindices/nodes_before_top_no_nodes/res_html/first-before-top.html \
  t/results/moreindices/nodes_before_top_no_nodes/res_html/first.html \
  t/results/moreindices/nodes_before_top_no_nodes/res_html/index.html \
  t/results/moreindices/nodes_before_top_no_nodes/res_html/node-in-menu-before-top.html \
  t/results/moreindices/nodes_before_top_no_nodes/res_html/second.html \
  t/results/moreindices/nodes_before_top_nodes.pl \
  t/results/moreindices/nodes_before_top_nodes/res_html/a-node.html \
  t/results/moreindices/nodes_before_top_nodes/res_html/another.html \
  t/results/moreindices/nodes_before_top_nodes/res_html/first-before-top.html \
  t/results/moreindices/nodes_before_top_nodes/res_html/first.html \
  t/results/moreindices/nodes_before_top_nodes/res_html/index.html \
  t/results/moreindices/nodes_before_top_nodes/res_html/node-in-menu-before-top.html \
  t/results/moreindices/nodes_before_top_nodes/res_html/nodes_before_top_abt.html \
  t/results/moreindices/nodes_before_top_nodes/res_html/second.html \
  t/results/moreindices/split_chapter_index.pl \
  t/results/moreindices/split_chapter_index/res_html/first.html \
  t/results/moreindices/split_chapter_index/res_html/index.html \
  t/results/moreindices/split_chapter_index/res_html/section-1.html \
  t/results/moreindices/split_chapter_index/res_html/split_chapter_index_abt.html \
  t/results/moreindices/split_chapter_index/res_html/subsection-1.html \
  t/results/moresectioning/equivalent_nodes.pl \
  t/results/moresectioning/equivalent_nodes/res_html/equivalent_nodes.html \
  t/results/moresectioning/equivalent_nodes_no_node.pl \
  t/results/moresectioning/equivalent_nodes_no_node/res_html/equivalent_nodes.html \
  t/results/moresectioning/more_sections_than_nodes.pl \
  t/results/moresectioning/more_sections_than_nodes/res_html/more_sections_than_nodes.html \
  t/results/moresectioning/node_footnote_end.pl \
  t/results/moresectioning/node_footnote_end/res_html/node_footnote.html \
  t/results/moresectioning/node_footnote_separated.pl \
  t/results/moresectioning/node_footnote_separated/res_html/node_footnote.html \
  t/results/moresectioning/node_footnote_use_node.pl \
  t/results/moresectioning/node_footnote_use_node/res_html/a.html \
  t/results/moresectioning/node_footnote_use_node/res_html/chapter.html \
  t/results/moresectioning/node_footnote_use_node/res_html/index.html \
  t/results/moresectioning/node_footnote_use_node/res_html/node_footnote_abt.html \
  t/results/moresectioning/nodes_after_top_before_chapter.pl \
  t/results/moresectioning/nodes_after_top_before_chapter/res_html/nodes_after_top_before_chapter.html \
  t/results/moresectioning/nodes_after_top_before_chapter_use_nodes_chapter.pl \
  t/results/moresectioning/nodes_after_top_before_chapter_use_nodes_chapter/res_html/index.html \
  t/results/moresectioning/nodes_after_top_before_chapter_use_nodes_chapter/res_html/nodes_after_top_before_chapter_abt.html \
  t/results/moresectioning/nodes_after_top_before_chapter_use_nodes_chapter/res_html/second-node.html \
  t/results/moresectioning/nodes_after_top_before_chapter_use_nodes_chapter/res_html/third-node.html \
  t/results/moresectioning/nodes_after_top_before_section.pl \
  t/results/moresectioning/nodes_after_top_before_section/res_html/index.html \
  t/results/moresectioning/nodes_after_top_before_section/res_html/second-node.html \
  t/results/moresectioning/nodes_after_top_before_section/res_html/third-node.html \
  t/results/moresectioning/nodes_after_top_before_section_use_nodes.pl \
  t/results/moresectioning/nodes_after_top_before_section_use_nodes/res_html/nodes_after_top_before_section.html \
  t/results/moresectioning/nodes_after_top_before_section_use_nodes_chapter.pl \
  t/results/moresectioning/nodes_after_top_before_section_use_nodes_chapter/res_html/index.html \
  t/results/moresectioning/nodes_after_top_before_section_use_nodes_chapter/res_html/nodes_after_top_before_section_abt.html \
  t/results/moresectioning/nodes_after_top_before_section_use_nodes_chapter/res_html/second-node.html \
  t/results/moresectioning/nodes_after_top_before_section_use_nodes_chapter/res_html/third-node.html \
  t/results/moresectioning/placed_things_before_element.pl \
  t/results/moresectioning/placed_things_before_element/res_html/placed_things_before_element.html \
  t/results/moresectioning/sectioning_frames.pl \
  t/results/moresectioning/sectioning_frames/res_html/First-node.html \
  t/results/moresectioning/sectioning_frames/res_html/Last-node-no-description.html \
  t/results/moresectioning/sectioning_frames/res_html/Second-node.html \
  t/results/moresectioning/sectioning_frames/res_html/Third-node-unnumbered.html \
  t/results/moresectioning/sectioning_frames/res_html/between-node.html \
  t/results/moresectioning/sectioning_frames/res_html/index.html \
  t/results/moresectioning/sectioning_frames/res_html/numbered-sub.html \
  t/results/moresectioning/sectioning_frames/res_html/numbered-sub2.html \
  t/results/moresectioning/sectioning_frames/res_html/numbered-sub3.html \
  t/results/moresectioning/sectioning_frames/res_html/numbered.html \
  t/results/moresectioning/sectioning_frames/res_html/sectioning_abt.html \
  t/results/moresectioning/sectioning_frames/res_html/sectioning_frame.html \
  t/results/moresectioning/sectioning_frames/res_html/sectioning_ovr.html \
  t/results/moresectioning/sectioning_frames/res_html/sectioning_toc.html \
  t/results/moresectioning/sectioning_frames/res_html/sectioning_toc_frame.html \
  t/results/moresectioning/sectioning_frames/res_html/unnumbered-sub.html \
  t/results/moresectioning/sectioning_frames/res_html/unnumbered-sub2.html \
  t/results/moresectioning/sectioning_frames/res_html/unnumbered.html \
  t/results/moresectioning/sectioning_frames/res_html/unnumbered2.html \
  t/results/moresectioning/top_node_up_explicit.pl \
  t/results/moresectioning/top_node_up_explicit/res_html/top_node_up_explicit.html \
  t/results/moresectioning/top_node_up_implicit.pl \
  t/results/moresectioning/top_node_up_implicit/res_html/top_node_up_implicit.html \
  t/results/moresectioning/two_footnotes_in_nodes.pl \
  t/results/moresectioning/two_footnotes_in_nodes/res_html/two_footnotes_in_nodes.html \
  t/results/moresectioning/two_footnotes_in_nodes_separated.pl \
  t/results/moresectioning/two_footnotes_in_nodes_separated/res_html/two_footnotes_in_nodes.html \
  t/results/multitable/empty_item_tab.pl \
  t/results/multitable/empty_multitable_with_cells.pl \
  t/results/multitable/inter_item_commands_in_multitable.pl \
  t/results/multitable/multitable_begin_with_tab.pl \
  t/results/multitable/multitable_in_example.pl \
  t/results/multitable/multitable_not_closed.pl \
  t/results/multitable/multitable_not_closed_item.pl \
  t/results/multitable/multitable_not_closed_item_tab.pl \
  t/results/multitable/multitable_one_column_too_much_cells.pl \
  t/results/multitable/multitable_two_columns_too_much_cells.pl \
  t/results/multitable/multitable_with_empty_item_tab.pl \
  t/results/multitable/not_letters_in_prototype.pl \
  t/results/multitable/paragraph_in_cells.pl \
  t/results/multitable/prototype_brace_no_brace.pl \
  t/results/multitable/prototype_brace_no_brace_comment.pl \
  t/results/multitable/prototype_no_brace.pl \
  t/results/multitable/ref_in_multitable.pl \
  t/results/multitable/w_in_multitable.pl \
  t/results/paragraph/close_paragraph_command.pl \
  t/results/paragraph/commands_in_flushright.pl \
  t/results/paragraph/comment_between_text.pl \
  t/results/paragraph/comment_in_quotation.pl \
  t/results/paragraph/double_style_paragraph.pl \
  t/results/paragraph/image_in_paragraph.pl \
  t/results/paragraph/no_paragraph_commands.pl \
  t/results/paragraph/paragraph_command.pl \
  t/results/paragraph/paragraph_count_and_example.pl \
  t/results/paragraph/paragraph_in_style_command.pl \
  t/results/paragraph/paragraph_indent_asis.pl \
  t/results/paragraph/text.pl \
  t/results/paragraph/text_comment.pl \
  t/results/paragraph/text_line.pl \
  t/results/paragraph/text_space_comment.pl \
  t/results/paragraph/two_lines.pl \
  t/results/plaintext_tests/U_with_utf8_enable_encoding.pl \
  t/results/plaintext_tests/accent_command_punctuation.pl \
  t/results/plaintext_tests/accents_in_var_enable_encoding.pl \
  t/results/plaintext_tests/after_punctuation_character_in_command.pl \
  t/results/plaintext_tests/all_spaces.pl \
  t/results/plaintext_tests/all_spaces/res_plaintext/all_spaces.txt \
  t/results/plaintext_tests/anchor_and_empty_lines.pl \
  t/results/plaintext_tests/at_commands_glued_in_example.pl \
  t/results/plaintext_tests/at_commands_glued_in_paragraph.pl \
  t/results/plaintext_tests/before_accent_punctuation.pl \
  t/results/plaintext_tests/characters_and_commands_in_var.pl \
  t/results/plaintext_tests/chinese_mixed_with_en.pl \
  t/results/plaintext_tests/chinese_mixed_with_en/res_plaintext/chinese_mixed_with_en.txt \
  t/results/plaintext_tests/code_commands_and_punctuation.pl \
  t/results/plaintext_tests/command_brace_no_arg_punctuation.pl \
  t/results/plaintext_tests/commands_and_punctuation.pl \
  t/results/plaintext_tests/east_asian_in_w.pl \
  t/results/plaintext_tests/east_asian_in_w/res_plaintext/east_asian_in_w.txt \
  t/results/plaintext_tests/empty_line_in_example_end.pl \
  t/results/plaintext_tests/empty_multitable_in_itemize.pl \
  t/results/plaintext_tests/end_sentence_space_protected.pl \
  t/results/plaintext_tests/expanded_tex.pl \
  t/results/plaintext_tests/flushright_not_closed_and_format.pl \
  t/results/plaintext_tests/html_expanded.pl \
  t/results/plaintext_tests/inhibit_punctuation.pl \
  t/results/plaintext_tests/insert_copying_and_paragraph.pl \
  t/results/plaintext_tests/insert_copying_inline_and_paragraph.pl \
  t/results/plaintext_tests/invalid_accent_punctuation.pl \
  t/results/plaintext_tests/isolated_html_expanded.pl \
  t/results/plaintext_tests/itemize_in_headitem_in_example.pl \
  t/results/plaintext_tests/japanese_utf8.pl \
  t/results/plaintext_tests/japanese_utf8/res_plaintext/japanese_utf8.txt \
  t/results/plaintext_tests/line_passed_and_formats.pl \
  t/results/plaintext_tests/lone_braces_in_inlineraw.pl \
  t/results/plaintext_tests/long_line.pl \
  t/results/plaintext_tests/long_uref_after_item.pl \
  t/results/plaintext_tests/multiline_image_and_align.pl \
  t/results/plaintext_tests/multiline_verb_after_space.pl \
  t/results/plaintext_tests/multitable.pl \
  t/results/plaintext_tests/multitable_in_example_extraneous_tab.pl \
  t/results/plaintext_tests/nested_code_commands.pl \
  t/results/plaintext_tests/nested_indentedblock.pl \
  t/results/plaintext_tests/nested_multitable.pl \
  t/results/plaintext_tests/no_empty_line_after_section.pl \
  t/results/plaintext_tests/no_punctuation_commands.pl \
  t/results/plaintext_tests/no_punctuation_commands_frenchspacing.pl \
  t/results/plaintext_tests/non_break_spaces.pl \
  t/results/plaintext_tests/non_break_spaces/res_plaintext/non_break_spaces.txt \
  t/results/plaintext_tests/paragraphindent.pl \
  t/results/plaintext_tests/protect_spaces_on_line.pl \
  t/results/plaintext_tests/protected_space_end_line.pl \
  t/results/plaintext_tests/punctuation.pl \
  t/results/plaintext_tests/punctuation_abbr_acronym.pl \
  t/results/plaintext_tests/punctuation_and_code_style_commands.pl \
  t/results/plaintext_tests/punctuation_and_code_style_commands_utf8.pl \
  t/results/plaintext_tests/punctuation_and_footnotes.pl \
  t/results/plaintext_tests/punctuation_and_footnotes_frenchspacing.pl \
  t/results/plaintext_tests/punctuation_and_upper_case_commands.pl \
  t/results/plaintext_tests/punctuation_and_upper_case_commands_utf8.pl \
  t/results/plaintext_tests/punctuation_at_end_command.pl \
  t/results/plaintext_tests/punctuation_commands.pl \
  t/results/plaintext_tests/punctuation_commands_frenchspacing.pl \
  t/results/plaintext_tests/punctuation_frenchspacing.pl \
  t/results/plaintext_tests/punctuation_in_command.pl \
  t/results/plaintext_tests/punctuation_in_command_end_line.pl \
  t/results/plaintext_tests/punctuation_in_sc.pl \
  t/results/plaintext_tests/quote_node_names.pl \
  t/results/plaintext_tests/quote_node_names/res_plaintext/quote_node_names.txt \
  t/results/plaintext_tests/sc_with_utf8_enable_encoding.pl \
  t/results/plaintext_tests/settitle_and_empty_top.pl \
  t/results/plaintext_tests/sp_with_text_before_in_example.pl \
  t/results/plaintext_tests/star_at_command_formatting.pl \
  t/results/plaintext_tests/tab_in_table_in_example.pl \
  t/results/plaintext_tests/tab_item_in_example.pl \
  t/results/plaintext_tests/transparent_text.pl \
  t/results/preformatted/caption_in_example.pl \
  t/results/preformatted/comment_example_and_blank_lines.pl \
  t/results/preformatted/comments_in_example.pl \
  t/results/preformatted/def_in_example.pl \
  t/results/preformatted/empty_line.pl \
  t/results/preformatted/empty_line_style_command.pl \
  t/results/preformatted/insertcopying_in_example.pl \
  t/results/preformatted/nested_example_and_comment.pl \
  t/results/preformatted/nested_formats.pl \
  t/results/preformatted/page_in_example.pl \
  t/results/preformatted/quote_dash_in_display.pl \
  t/results/preformatted/quote_dash_in_example.pl \
  t/results/preformatted/text_on_command_line.pl \
  t/results/preformatted/titlefont_in_example.pl \
  t/results/quotation/comment_on_quotation_line.pl \
  t/results/quotation/empty_quotation.pl \
  t/results/quotation/only_comment_on_quotation_line.pl \
  t/results/quotation/quotation_and_author.pl \
  t/results/quotation/quotation_author_in_example.pl \
  t/results/quotation/quotation_beginning_and_end_on_line.pl \
  t/results/quotation/space_at_commands_end_quotation_line.pl \
  t/results/quotation/standard_quotations.pl \
  t/results/raw/beginning_and_end_on_line.pl \
  t/results/raw/braces_in_tex.pl \
  t/results/raw/inline_in_example.pl \
  t/results/raw/inline_missing_first_arg.pl \
  t/results/raw/inlinefmt.pl \
  t/results/raw/inlinefmt_with_empty_line.pl \
  t/results/raw/inlineraw.pl \
  t/results/raw/inlineraw_with_empty_line.pl \
  t/results/raw/lone_braces_in_html.pl \
  t/results/raw/misc_raw.pl \
  t/results/raw/misc_raw_comments.pl \
  t/results/raw/nested_macros.pl \
  t/results/raw/raw_commands_and_end_of_lines.pl \
  t/results/raw/raw_expanded_in_style.pl \
  t/results/raw/raw_in_example.pl \
  t/results/raw/raw_in_para.pl \
  t/results/raw/raw_in_style.pl \
  t/results/raw/raw_not_closed.pl \
  t/results/raw/tex_not_closed.pl \
  t/results/raw/verbatim_and_verbatiminclude.pl \
  t/results/raw/verbatim_in_brace_command.pl \
  t/results/raw/verbatim_not_closed.pl \
  t/results/regions/anchor_in_copying.pl \
  t/results/regions/anchor_in_copying_in_footnote.pl \
  t/results/regions/anchor_in_titlepage.pl \
  t/results/regions/anchor_in_titlepage_titlepage.pl \
  t/results/regions/copying_not_closed.pl \
  t/results/regions/double_copying.pl \
  t/results/regions/double_titlepage_not_closed.pl \
  t/results/regions/format_in_titlepage.pl \
  t/results/regions/format_in_titlepage_titlepage.pl \
  t/results/regions/ref_in_copying.pl \
  t/results/regions/today_in_copying.pl \
  t/results/sectioning/a_comma_after_node.pl \
  t/results/sectioning/anchor_in_footnote.pl \
  t/results/sectioning/anchor_in_footnote_separate.pl \
  t/results/sectioning/anchor_zero.pl \
  t/results/sectioning/at_commands_in_node.pl \
  t/results/sectioning/chapter_before_and_after_part.pl \
  t/results/sectioning/chapter_before_part.pl \
  t/results/sectioning/chapter_between_nodes.pl \
  t/results/sectioning/chapter_node_before_and_after_part.pl \
  t/results/sectioning/chapter_sections.pl \
  t/results/sectioning/character_and_spaces_in_node.pl \
  t/results/sectioning/character_and_spaces_in_refs.pl \
  t/results/sectioning/character_and_spaces_in_refs_out.pl \
  t/results/sectioning/character_and_spaces_in_refs_out/res_html/_0021_005f_0022_0023_0024_0025_0026_0027_0028_0029_002a_002b_002d_002e.html \
  t/results/sectioning/character_and_spaces_in_refs_out/res_html/_002f_003b_003c_003d_003e_003f_005b_005c_005d_005e_005f_0060_007c_007e.html \
  t/results/sectioning/character_and_spaces_in_refs_out/res_html/index.html \
  t/results/sectioning/character_and_spaces_in_refs_out/res_html/local-node.html \
  t/results/sectioning/character_and_spaces_in_refs_out/res_html/other-nodes.html \
  t/results/sectioning/complex.pl \
  t/results/sectioning/complex_split_at_node.pl \
  t/results/sectioning/contents.pl \
  t/results/sectioning/contents_and_shortcontents.pl \
  t/results/sectioning/contents_at_document_begin.pl \
  t/results/sectioning/contents_at_end_document.pl \
  t/results/sectioning/contents_at_end_document_after_node.pl \
  t/results/sectioning/contents_in_document.pl \
  t/results/sectioning/contents_in_html_text.pl \
  t/results/sectioning/contents_no_section.pl \
  t/results/sectioning/contents_with_only_top_node.pl \
  t/results/sectioning/double_node_anchor_float.pl \
  t/results/sectioning/double_part.pl \
  t/results/sectioning/double_top.pl \
  t/results/sectioning/double_top_in_menu.pl \
  t/results/sectioning/double_top_section.pl \
  t/results/sectioning/email_in_node.pl \
  t/results/sectioning/empty_anchor.pl \
  t/results/sectioning/empty_node.pl \
  t/results/sectioning/empty_nodes_with_commands.pl \
  t/results/sectioning/empty_ref_arg.pl \
  t/results/sectioning/empty_refs.pl \
  t/results/sectioning/empty_top_node_up.pl \
  t/results/sectioning/equivalent_labels.pl \
  t/results/sectioning/equivalent_nodes.pl \
  t/results/sectioning/explicit_node_directions.pl \
  t/results/sectioning/hole_in_sectioning.pl \
  t/results/sectioning/internal_top_node_up.pl \
  t/results/sectioning/lone_Top_node.pl \
  t/results/sectioning/lone_contents.pl \
  t/results/sectioning/loop_nodes.pl \
  t/results/sectioning/lowered_subsubsection.pl \
  t/results/sectioning/loweredheading.pl \
  t/results/sectioning/menutextorder.pl \
  t/results/sectioning/more_sections_than_nodes.pl \
  t/results/sectioning/next_in_menu_is_below.pl \
  t/results/sectioning/next_no_prev_to_node.pl \
  t/results/sectioning/no_argument_and_contents.pl \
  t/results/sectioning/no_element.pl \
  t/results/sectioning/no_menu.pl \
  t/results/sectioning/node.pl \
  t/results/sectioning/node_empty_direction.pl \
  t/results/sectioning/node_nested_parentheses.pl \
  t/results/sectioning/node_part_chapter_after_chapter.pl \
  t/results/sectioning/node_part_chapter_after_top.pl \
  t/results/sectioning/node_too_much_args.pl \
  t/results/sectioning/node_up_direction_for_top_with_manual.pl \
  t/results/sectioning/node_up_external_node.pl \
  t/results/sectioning/nodename_parentheses.pl \
  t/results/sectioning/nodes_after_top_before_chapter_nodes.pl \
  t/results/sectioning/nodes_after_top_before_chapter_sections.pl \
  t/results/sectioning/nodes_after_top_before_section_nodes.pl \
  t/results/sectioning/nodes_after_top_before_section_sections.pl \
  t/results/sectioning/nodes_before_top.pl \
  t/results/sectioning/nodes_no_node_top_explicit_directions.pl \
  t/results/sectioning/non_automatic_internal_top_node_up.pl \
  t/results/sectioning/non_automatic_top_node_up_and_url.pl \
  t/results/sectioning/non_automatic_top_node_up_url.pl \
  t/results/sectioning/novalidate.pl \
  t/results/sectioning/one_node_explicit_directions_anchor.pl \
  t/results/sectioning/one_subsection.pl \
  t/results/sectioning/one_subsection_and_node.pl \
  t/results/sectioning/part_before_chapter.pl \
  t/results/sectioning/part_before_section.pl \
  t/results/sectioning/part_before_top.pl \
  t/results/sectioning/part_chapter_after_top.pl \
  t/results/sectioning/part_chapter_appendix.pl \
  t/results/sectioning/part_node_after_top.pl \
  t/results/sectioning/part_node_before_top.pl \
  t/results/sectioning/part_node_chapter_after_top.pl \
  t/results/sectioning/part_node_chapter_appendix.pl \
  t/results/sectioning/part_node_chapter_node_appendix.pl \
  t/results/sectioning/part_node_node_part_appendix.pl \
  t/results/sectioning/part_node_part_appendix.pl \
  t/results/sectioning/part_node_part_node_appendix.pl \
  t/results/sectioning/placed_things_before_element.pl \
  t/results/sectioning/placed_things_before_node.pl \
  t/results/sectioning/protected_node_parentheses.pl \
  t/results/sectioning/raiselowersections.pl \
  t/results/sectioning/rec_nodes.pl \
  t/results/sectioning/ref_to_top.pl \
  t/results/sectioning/ref_to_unknown_node.pl \
  t/results/sectioning/section_before_chapter.pl \
  t/results/sectioning/section_before_part.pl \
  t/results/sectioning/section_before_top.pl \
  t/results/sectioning/section_before_top_no_node.pl \
  t/results/sectioning/section_below_unnumbered.pl \
  t/results/sectioning/section_below_unnumbered_no_top.pl \
  t/results/sectioning/section_chapter_before_top.pl \
  t/results/sectioning/section_chapter_before_top_nodes.pl \
  t/results/sectioning/section_in_unnumbered_info.pl \
  t/results/sectioning/section_in_unnumbered_plaintext.pl \
  t/results/sectioning/section_node_before_part.pl \
  t/results/sectioning/sectioning_part_appendix.pl \
  t/results/sectioning/sectioning_part_appendix_no_top.pl \
  t/results/sectioning/sections.pl \
  t/results/sectioning/semi_auto.pl \
  t/results/sectioning/setfilename_on_top_and_after_node.pl \
  t/results/sectioning/shortcontents.pl \
  t/results/sectioning/space_in_node.pl \
  t/results/sectioning/top_chapter_sections.pl \
  t/results/sectioning/top_no_argument_and_content.pl \
  t/results/sectioning/top_no_argument_and_node.pl \
  t/results/sectioning/top_no_argument_and_top_node.pl \
  t/results/sectioning/top_node_no_menu_direction.pl \
  t/results/sectioning/top_node_part_top.pl \
  t/results/sectioning/top_node_up_url.pl \
  t/results/sectioning/top_part_chapter.pl \
  t/results/sectioning/top_without_node_nodes.pl \
  t/results/sectioning/top_without_node_sections.pl \
  t/results/sectioning/transliterated_split_equivalent_nodes.pl \
  t/results/sectioning/transliterated_split_equivalent_nodes/res_html/a.html \
  t/results/sectioning/transliterated_split_equivalent_nodes/res_html/index.html \
  t/results/sectioning/transliterated_split_equivalent_nodes/res_html/n.html \
  t/results/sectioning/two_nodes_at_the_end.pl \
  t/results/sectioning/two_nodes_between_chapters.pl \
  t/results/sectioning/two_unnumbered_no_argument.pl \
  t/results/sectioning/unknown_node_in_menu.pl \
  t/results/sectioning/unnumbered_before_node_top_top.pl \
  t/results/sectioning/unnumbered_before_top.pl \
  t/results/sectioning/unnumbered_before_top_node.pl \
  t/results/sectioning/unnumbered_no_argument.pl \
  t/results/sectioning/unnumbered_top_without_node_nodes.pl \
  t/results/sectioning/unnumbered_top_without_node_sections.pl \
  t/results/value/bad_syntax.pl \
  t/results/value/comment_on_set_line.pl \
  t/results/value/empty_set.pl \
  t/results/value/empty_value_in_line.pl \
  t/results/value/ignored_value_definition.pl \
  t/results/value/not_only_characters.pl \
  t/results/value/set_flag_command_equivalent.pl \
  t/results/value/set_form_feed.pl \
  t/results/value/set_in_item_missing_line.pl \
  t/results/value/set_on_item_line.pl \
  t/results/value/simple.pl \
  t/results/value/spaces_before_value.pl \
  t/results/value/value_after_accent.pl \
  t/results/value/value_in_index_commands.pl \
  t/results/value/value_in_invalid_documentencoding.pl \
  t/results/value/value_in_misc_commands.pl \
  t/results/value/value_in_node.pl \
  t/results/value/value_node_directions.pl \
  t/results/value/value_zero.pl \
  t/results/value_and_macro/comma_value_in_macro_arg.pl \
  t/results/value_and_macro/macro_in_value.pl \
  t/results/value_and_macro/value_in_macro_body.pl \
  t/results/value_and_macro/value_in_macro_formal_arg.pl \
  t/results/verb/comments.pl \
  t/results/verb/end_of_line.pl \
  t/results/verb/multiline.pl \
  t/results/verb/nested.pl \
  t/results/verb/simple.pl \
  t/results/verb/verb_and_char_end_of_line_not_closed.pl \
  t/results/verb/verb_at_end_of_line_not_closed.pl \
  t/results/verb/verb_not_closed.pl \
  t/results/verb/verb_not_closed_with_char.pl \
  t/results/xml_tests/brace_commands_spaces_end_of_lines.pl \
  t/results/xml_tests/commands_and_spaces.pl \
  t/results/xml_tests/comments_end_lines.pl \
  t/results/xml_tests/comments_on_block_command_lines.pl \
  t/results/xml_tests/comments_on_misc_command_line.pl \
  t/results/xml_tests/image_inline_or_not.pl \
  t/results/xml_tests/lone_bye.pl \
  t/results/xml_tests/macro_and_args.pl \
  t/results/xml_tests/node_and_bye.pl \
  t/results/xml_tests/node_no_section.pl \
  t/results/xml_tests/raw.pl \
  t/results/xml_tests/raw_and_comments.pl \
  t/results/xml_tests/spaces_info_lost.pl \
  t/results/xtable/accent_on_table_line.pl \
  t/results/xtable/block_commands_in_table.pl \
  t/results/xtable/comment_and_itemx_before_item.pl \
  t/results/xtable/definfoenclose_on_table_line.pl \
  t/results/xtable/empty_item_itemx.pl \
  t/results/xtable/headitem_in_table.pl \
  t/results/xtable/inter_item_commands_in_table.pl \
  t/results/xtable/inter_item_commands_in_table_in_example.pl \
  t/results/xtable/invalid_command_and_brace_in_table.pl \
  t/results/xtable/itemx_before_item.pl \
  t/results/xtable/lone_end_table.pl \
  t/results/xtable/long_item.pl \
  t/results/xtable/no_arg_brace_command_on_table_line.pl \
  t/results/xtable/no_argument_for_table.pl \
  t/results/xtable/table_nested.pl \
  t/results/xtable/text_between_item_itemx.pl \
  t/results/xtable/title_and_itemx_before_item.pl