summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/cpp.test
blob: 580d284f82b522c2e208a4f5cb97da1536cf0e8d (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
#
# Test cases specifically for the C++ language.
#
# Range: 30000 - 39999
# test.name  config.file  input.file

# there are additional tests inside imported.test.

02102  common/clark.cfg                                     cpp/indent-c.cpp
02103  common/clark.cfg                                     cpp/output.cpp

30000  cpp/ben_001.cfg                                      cpp/cout.cpp
30001  cpp/sp_angle_colon.cfg                               cpp/alt_tokens.cpp
30002  cpp/ben_003.cfg                                      cpp/constructor.cpp
30003  cpp/ben_004.cfg                                      cpp/strings.cpp
30004  cpp/Issue_4036.cfg                                   cpp/Issue_4036.cpp
30005  common/empty.cfg                                     cpp/Issue_4042.cpp
30006  common/empty.cfg                                     cpp/Issue_4027.cpp
30007  cpp/Issue_4080.cfg                                   cpp/Issue_4080.cpp
30008  cpp/Issue_4094.cfg                                   cpp/Issue_4094.cpp
30009  cpp/Issue_3236.cfg                                   cpp/Issue_3236.cpp

30010  cpp/ben_005.cfg                                      cpp/class.h
30011  cpp/ben_006.cfg                                      cpp/misc.cpp
30012  cpp/avalon2.cfg                                      cpp/misc2.cpp
30013  cpp/sim.cfg                                          cpp/sim.h
30014  common/indent_columns-3.cfg                          cpp/ctor-var.cpp
30015  cpp/ben_008.cfg                                      cpp/exception.cpp
30016  cpp/custom-open.cfg                                  cpp/custom-open.cpp
30017  cpp/custom-open2.cfg                                 cpp/custom-open.cpp
30018  cpp/ben_009.cfg                                      cpp/class-addr.h
30019  cpp/ben_010.cfg                                      cpp/wacky-template.cpp

30020  common/ben_011.cfg                                   cpp/bool.cpp
30021  cpp/ben_012.cfg                                      cpp/byref.cpp
30022  cpp/ben_013.cfg                                      cpp/extern_c.h
30023  cpp/ben_014.cfg                                      cpp/templates.cpp
30024  cpp/class-nl_func-add.cfg                            cpp/class-init.cpp
30025  cpp/class-nl_func-del.cfg                            cpp/class-init.cpp
30026  cpp/byref-left.cfg                                   cpp/byref.cpp
30027  cpp/byref-right.cfg                                  cpp/byref.cpp
30028  cpp/byref-center.cfg                                 cpp/byref.cpp
30029  cpp/ben_015.cfg                                      cpp/init_align.h

30030  cpp/avalon.cfg                                       cpp/Timestamp.h
30031  cpp/avalon.cfg                                       cpp/operator.cpp
30032  cpp/op-space-force.cfg                               cpp/operator.cpp
30033  cpp/op-space-remove.cfg                              cpp/operator.cpp
30034  cpp/op-space-force.cfg                               cpp/operator_proto.cpp
30035  cpp/op-space-remove.cfg                              cpp/operator_proto.cpp
30036  cpp/op-space-remove-align-1.cfg                      cpp/operator.cpp
30037  cpp/op-space-remove-align-1.cfg                      cpp/operator_proto.cpp
30038  cpp/op-space-remove-align-2.cfg                      cpp/operator.cpp
30039  cpp/op-space-remove-align-2.cfg                      cpp/operator_proto.cpp

30040  cpp/nl_class-r.cfg                                   cpp/nl-class.h
30041  cpp/nl_class-a.cfg                                   cpp/nl-class.h
30042  cpp/Issue_2020.cfg                                   cpp/Issue_2020.cpp
30043  cpp/nl_func_call_empty-r.cfg                         cpp/nl_func_call_empty.cpp
30044  cpp/nl_func_call_paren_empty-r.cfg                   cpp/nl_func_call_paren_empty.cpp
30045  cpp/nl_func_decl_1.cfg                               cpp/nl_func_decl.cpp
30046  cpp/nl_func_decl_2.cfg                               cpp/nl_func_decl.cpp
30047  cpp/nl_func_paren_empty.cfg                          cpp/nl_func_paren_empty.cpp
30048  cpp/nl_func_def_paren_empty-r.cfg                    cpp/nl_func_def_paren_empty.cpp
30049  cpp/nl_func_call_paren-f.cfg                         cpp/nl_func_call_paren.cpp

30050  cpp/nl_namespace-r.cfg                               cpp/nl-namespace.h
30051  cpp/nl_namespace-a.cfg                               cpp/nl-namespace.h
30052  cpp/nl_try-a.cfg                                     cpp/try-catch-nl.cpp
30053  cpp/sp_catch_brace.cfg                               cpp/exception.cpp
30054  cpp/Issue_2091.cfg                                   cpp/Issue_2091.cpp
30055  cpp/nl_after_func_body.cfg                           cpp/nl_func.cpp
30056  cpp/nl_after_func_body-2.cfg                         cpp/nl_func.cpp
30057  cpp/nl_inside_namespace_1.cfg                        cpp/nl_inside_namespace.cpp
30058  cpp/nl_inside_namespace_2.cfg                        cpp/nl_inside_namespace.cpp
30059  cpp/Issue_2186.cfg                                   cpp/Issue_2186.cpp

30060  cpp/Issue_1734.cfg                                   cpp/Issue_1734.cpp

# Class colon positioning
30061  cpp/class-colon-pos-eol.cfg                          cpp/class-init.cpp
30062  cpp/class-colon-pos-sol.cfg                          cpp/class-init.cpp
30063  cpp/class-colon-pos-eol-add.cfg                      cpp/class-init.cpp
30064  cpp/class-colon-pos-sol-add.cfg                      cpp/class-init.cpp
30065  cpp/class-colon-pos-sol.cfg                          cpp/Example.h
30066  cpp/class-on-colon-indent.cfg                        cpp/class-init.cpp
30067  cpp/nl_func_class_scope-a.cfg                        cpp/nl_func_type_name.cpp
30068  cpp/nl_func_class_scope-a.cfg                        cpp/nl_func_scope_name.cpp
30069  cpp/nl_func_class_scope-a.cfg                        cpp/class-implementation.cpp

30070  cpp/nl_func_scope_name-a.cfg                         cpp/nl_func_scope_name.cpp
30071  cpp/lineEndings-to-Win.cfg                           cpp/lineEndings-Mac.cpp
30072  cpp/lineEndings-to-Unix.cfg                          cpp/lineEndings-Win.cpp
30073  cpp/lineEndings-to-Mac.cfg                           cpp/lineEndings-Unix.cpp
30074  common/empty.cfg                                     cpp/bom.cpp
30075  common/empty.cfg                                     cpp/goto.cpp
30076  cpp/Issue_2594.cfg                                   cpp/Issue_2594.cpp
30077  cpp/Issue_2596.cfg                                   cpp/Issue_2596.cpp
30078  common/empty.cfg                                     cpp/Issue_2672-a.cpp
30079  common/empty.cfg                                     cpp/Issue_2672-b.cpp

30080  cpp/nl_brace_brace-a.cfg                             cpp/nl_brace_brace.cpp
30081  cpp/Issue_2383.cfg                                   cpp/Issue_2383.cpp
30082  cpp/Issue_931.cfg                                    cpp/Issue_931.cpp
30083  cpp/Issue_995-do.cfg                                 cpp/Issue_995-do.cpp
30084  cpp/Issue_1184.cfg                                   cpp/Issue_1184.cpp
30085  cpp/nSolve.cfg                                       cpp/align_class.cpp
30086  cpp/align_class-constr.cfg                           cpp/align_class-constr.cpp
30087  cpp/Issue_1511.cfg                                   cpp/Issue_1511.cpp
30088  cpp/Issue_2561.cfg                                   cpp/Issue_2561.cpp
30089  cpp/Issue_2281.cfg                                   cpp/Issue_2281.cpp

30090  cpp/bug_488.cfg                                      cpp/bug_488.cpp
30091  cpp/bug_472.cfg                                      cpp/bug_472.cpp
30092  cpp/ben_016.cfg                                      cpp/bug_481.cpp
30093  common/sp_after_cast.cfg                             cpp/bug_484.cpp
30094  common/align-1.cfg                                   cpp/bug_495.cpp
30095  cpp/ben_017.cfg                                      cpp/bug_485.cpp
30096  cpp/bug_1854.cfg                                     cpp/bug_1854.cpp
30097  common/align-1.cfg                                   cpp/issue_1946.cpp
30098  cpp/Issue_2692.cfg                                   cpp/Issue_2692.cpp
30099  common/sp_arith-f.cfg                                cpp/bug_1127.cpp

30100  cpp/nl_template-f.cfg                                cpp/templates.cpp
30101  cpp/nl_template-r.cfg                                cpp/templates.cpp
30102  cpp/template_sp-force.cfg                            cpp/templates.cpp
30103  cpp/template_sp-remove.cfg                           cpp/templates.cpp
30104  cpp/avalon3.cfg                                      cpp/templ_class.h
30105  cpp/avalon4.cfg                                      cpp/av.h
30106  cpp/nl_template-f.cfg                                cpp/templates2.cpp
30107  cpp/nl_template-r.cfg                                cpp/templates2.cpp
30108  cpp/nl_template-r.cfg                                cpp/templates3.cpp
30109  common/empty.cfg                                     cpp/templates4.cpp

30110  cpp/class-nl_func-add2.cfg                           cpp/class-init.cpp
30111  cpp/indent_columns-4.cfg                             cpp/bug_1346.h
30112  cpp/bug_1432.cfg                                     cpp/bug_1432.cpp
30113  cpp/bug_1452.cfg                                     cpp/bug_1452.cpp
30114  cpp/template_sp-remove.cfg                           cpp/bug_1462.cpp
30115  common/empty.cfg                                     cpp/Issue_1704.cpp
30116  cpp/Issue_1052.cfg                                   cpp/Issue_1052.cpp
30117  cpp/Issue_2343.cfg                                   cpp/Issue_2343.cpp
30118  cpp/Issue_2758.cfg                                   cpp/Issue_2758.cpp
30119  cpp/Issue_2879.cfg                                   cpp/Issue_2879.cpp

30120  cpp/template_sp-force.cfg                            cpp/sp_after_angle.cpp
30121  cpp/template_sp-remove.cfg                           cpp/sp_after_angle.cpp
30122  common/sp_inside_fparen-f.cfg                        cpp/sp_after_angle.cpp
30123  cpp/sp_inside_fparen-r.cfg                           cpp/sp_after_angle.cpp
30124  cpp/sp_after_angle-1.cfg                             cpp/sp_after_angle.cpp
30125  cpp/sp_after_angle-2.cfg                             cpp/sp_after_angle.cpp
30126  cpp/sp_after_angle-3.cfg                             cpp/sp_after_angle.cpp
30127  common/empty.cfg                                     cpp/Issue_2565.cpp
30128  cpp/Issue_2873.cfg                                   cpp/Issue_2873.cpp
30129  cpp/Issue_2890.cfg                                   cpp/Issue_2890.cpp

30130  common/brace-allman.cfg                              cpp/if-constexpr.cpp
30131  cpp/Issue_3010.cfg                                   cpp/Issue_3010.cpp
30132  cpp/sp_brace_catch.cfg                               cpp/sp_brace_catch.cpp
30133  cpp/Issue_3252.cfg                                   cpp/Issue_3252.cpp
30134  cpp/Issue_3357.cfg                                   cpp/Issue_3357.cpp
30135  cpp/Issue_3448.cfg                                   cpp/Issue_3448.cpp
30136  cpp/Issue_3413.cfg                                   cpp/Issue_3413.cpp
30137  cpp/Issue_3513.cfg                                   cpp/Issue_3513-0.cpp
30138  cpp/Issue_3513.cfg                                   cpp/Issue_3513-1.cpp
30139  cpp/Issue_3604.cfg                                   cpp/Issue_3604.cpp

30140  cpp/Issue_3785.cfg                                   cpp/Issue_3785.cpp
30141  cpp/Issue_1130.cfg                                   cpp/Issue_1130.cpp
30142  cpp/Issue_3915.cfg                                   cpp/Issue_3915.cpp
30143  cpp/Issue_3919.cfg                                   cpp/Issue_3919.cpp
30144  cpp/Issue_3916.cfg                                   cpp/Issue_3916.cpp
30145  cpp/Issue_3914.cfg                                   cpp/Issue_3914.cpp
30146  cpp/Issue_3614.cfg                                   cpp/Issue_3614.cpp
30147  cpp/Issue_3965.cfg                                   cpp/Issue_3965.cpp
30148  cpp/Issue_3965.cfg                                   cpp/Issue_3965-2.cpp
30149  cpp/Issue_3967.cfg                                   cpp/Issue_3967.cc

30150  cpp/Issue_3983.cfg                                   cpp/Issue_3983.cpp
30151  cpp/Issue_3983.cfg                                   cpp/Issue_3996.cpp
30152  cpp/Issue_3983.cfg                                   cpp/Issue_4023.cpp
30153  cpp/Issue_3983.cfg                                   cpp/Issue_4026.cpp
30154  common/empty.cfg                                     cpp/Issue_4132.cpp

30160  common/empty.cfg                                     cpp/Issue_3980.cpp
30161  cpp/Discussion_3987.cfg                              cpp/Discussion_3987.cpp
30162  cpp/Issue_4239.cfg                                   cpp/Issue_4239.cpp

30200  cpp/bug_1862.cfg                                     cpp/bug_1862.cpp
30201  cpp/cmt_indent-1.cfg                                 cpp/cmt_indent.cpp
30202  cpp/cmt_indent-2.cfg                                 cpp/cmt_indent.cpp
30203  cpp/cmt_indent-3.cfg                                 cpp/cmt_indent.cpp
30204  cpp/indent_columns-4.cfg                             cpp/comment-align.cpp
30205  cpp/indent_columns-4.cfg                             cpp/cmt_right.cpp
30206  common/empty.cfg                                     cpp/cmt_backslash_eol.cpp
30207  cpp/indent_class-t_columns-4.cfg                     cpp/cmt_indent_pp.h
30208  cpp/bug_1108.cfg                                     cpp/bug_1108.cpp
30209  common/empty.cfg                                     cpp/bug_1134.cpp

30210  common/empty.cfg                                     cpp/bug_1338.cpp
30211  cpp/space_indent_class-t_columns-4.cfg               cpp/indent_comment_align_thresh.cpp
30212  cpp/indent_comment_align_thresh_2.cfg                cpp/indent_comment_align_thresh.cpp
30213  cpp/align_right_comment.cfg                          cpp/align_right_comment.cpp
30214  cpp/issue_1887.cfg                                   cpp/align_across_braces.cpp
30215  common/empty.cfg                                     cpp/Issue_2099.cpp
30216  cpp/Issue_2302.cfg                                   cpp/Issue_2302.cpp
30217  common/empty.cfg                                     cpp/2138.cpp
30218  cpp/Issue_3710.cfg                                   cpp/Issue_3710.cpp

30220  cpp/bug_1340.cfg                                     cpp/bug_1340.cpp
30221  cpp/Issue_2914.cfg                                   cpp/Issue_2914.cpp
30223  cpp/sp_enum_colon.cfg                                cpp/sp_enum_colon.cpp
30224  cpp/sp_enum_colon-r.cfg                              cpp/sp_enum_colon.cpp
30225  common/empty.cfg                                     cpp/Issue_3176.cpp
30226  cpp/sp_enum_colon-i.cfg                              cpp/sp_enum_colon.cpp
30227  cpp/sp_inside_braces_enum-i.cfg                      cpp/sp_inside_braces_enum.cpp
30228  cpp/sp_inside_braces_enum-f.cfg                      cpp/sp_inside_braces_enum.cpp
30229  cpp/sp_inside_braces_enum-r.cfg                      cpp/sp_inside_braces_enum.cpp

30230  cpp/sp_type_func-r.cfg                               cpp/sp_type_func.cpp
30231  cpp/sp_type_func-f.cfg                               cpp/sp_type_func.cpp
30232  cpp/sp_type_func-1.cfg                               cpp/sp_type_func.cpp
30233  cpp/sp_type_func-2.cfg                               cpp/sp_type_func.cpp
30234  cpp/functype_param-r.cfg                             cpp/functype_param.cpp
30235  cpp/functype_param-f.cfg                             cpp/functype_param.cpp
30236  cpp/Issue_750.cfg                                    cpp/Issue_750.cpp
30237  cpp/Issue_3920.cfg                                   cpp/Issue_3920.cpp

30240  cpp/align_func_params-t.cfg                          cpp/align_func_params.cpp
30241  cpp/align_func_params_span-1.cfg                     cpp/align_func_params.cpp
30242  cpp/align_func_params_gap.cfg                        cpp/align_func_params.cpp
30243  cpp/align_func_params_thresh_1.cfg                   cpp/align_func_params.cpp
30244  cpp/align_func_params_thresh_2.cfg                   cpp/align_func_params.cpp
30245  cpp/align_func_params_thresh_3.cfg                   cpp/align_func_params.cpp
30246  cpp/align_func_params_thresh_4.cfg                   cpp/align_func_params.cpp
30247  common/empty.cfg                                     cpp/Issue_2332.cpp
30248  cpp/Issue_2831.cfg                                   cpp/Issue_2831.cpp
30249  cpp/align-330.cfg                                    cpp/align-330.cpp

30250  cpp/align_fcall.cfg                                  cpp/align_fcall.cpp
30251  cpp/align_fcall-2.cfg                                cpp/align_fcall.cpp
30252  common/empty.cfg                                     cpp/Issue_3691.h
30253  common/empty.cfg                                     cpp/align_left_shift.cpp
30254  common/empty.cfg                                     cpp/align_left_shift2.cpp
30255  cpp/ben_018.cfg                                      cpp/align_constr.cpp
30256  common/empty.cfg                                     cpp/func_call.cpp
30257  cpp/indent_columns-4.cfg                             cpp/func_call_chain.cpp
30258  common/indent_columns-3.cfg                          cpp/casts.cpp
30259  cpp/sp_after_constr_colon.cfg                        cpp/sp_after_constr_colon.cpp

30260  cpp/var_def_gap.cfg                                  cpp/var_def_gap.cpp
30261  cpp/align_var_def_thresh_1.cfg                       cpp/align_var_def_thresh.cpp
30262  cpp/align_var_def_thresh_2.cfg                       cpp/align_var_def_thresh.cpp
30263  cpp/align_var_def_thresh_3.cfg                       cpp/align_var_def_thresh.cpp
30264  cpp/Issue_2668.cfg                                   cpp/Issue_2668.cpp
30265  cpp/long_br_cmt.cfg                                  cpp/long_br_cmt.cpp
30266  cpp/Issue_2921.cfg                                   cpp/Issue_2921.cpp
30267  cpp/Issue_2930.cfg                                   cpp/Issue_2930.cpp
30268  cpp/Issue_2692.cfg                                   cpp/Issue_3018.cpp

30270  cpp/const_throw.cfg                                  cpp/const_throw.cpp
30271  cpp/sp_throw_paren-r.cfg                             cpp/sp_throw_paren.cpp
30272  cpp/sp_throw_paren-f.cfg                             cpp/sp_throw_paren.cpp
30273  common/sp_cparen_oparen-f.cfg                        cpp/sp_cparen_oparen.cpp
30274  cpp/sp_cparen_oparen-r.cfg                           cpp/sp_cparen_oparen.cpp
30275  common/empty.cfg                                     cpp/bug_1321.cpp
30278  cpp/bug_1439.cfg                                     cpp/bug_1439.cpp
30279  common/indent_inside_ternary_operator.cfg            cpp/indent-inside-ternary-operator.cpp

30280  cpp/sp_dc.cfg                                        cpp/sf557.cpp
30281  cpp/Issue_2478.cfg                                   cpp/Issue_2478.cpp
30282  cpp/Issue_2703.cfg                                   cpp/Issue_2703.cpp
30283  common/empty.cfg                                     cpp/Issue_3321.h
30284  cpp/Issue_2957.cfg                                   cpp/Issue_2957.cpp
30285  cpp/Issue_2971.cfg                                   cpp/Issue_2971.cpp
30286  cpp/Issue_3558.cfg                                   cpp/Issue_3558.cpp
30287! cpp/Issue_3786.cfg                                   cpp/Issue_3786.cpp

30290  cpp/indent_shift.cfg                                 cpp/align_left_shift.cpp
30291  cpp/indent_shift.cfg                                 cpp/indent_shift.cpp
30292  cpp/align_eigen_comma_init.cfg                       cpp/eigen.cpp
30293  cpp/pos_shift-lead.cfg                               cpp/pos_shift.cpp
30294  cpp/pos_shift-trail.cfg                              cpp/pos_shift.cpp
30295  cpp/pos_shift-join.cfg                               cpp/pos_shift.cpp

30300  cpp/ben_020.cfg                                      cpp/enum_shr.cpp
30301  cpp/al.cfg                                           cpp/enum_class.h
30302  cpp/bug_1315.cfg                                     cpp/bug_1315.cpp
30303  cpp/Issue_2902.cfg                                   cpp/Issue_2902.cpp

# TODO: Make a tests for a braced_init_list. See also 34153-34166.
30310  cpp/sp_word_brace_force.cfg                          cpp/braced_init_list.cpp
30311  cpp/sp_word_brace_remove.cfg                         cpp/uniform_initialization.cpp
30312  cpp/sp_inside_type_brace_init_lst-f.cfg              cpp/return_init_list.cpp
30313  cpp/sp_brace_brace-r.cfg                             cpp/sp_brace_brace.cpp
30314  cpp/sp_brace_brace-f.cfg                             cpp/sp_brace_brace.cpp
30315  cpp/issue_1997.cfg                                   cpp/return_braced_init.cpp
30316  cpp/Issue_2428.cfg                                   cpp/Issue_2428.cpp
30317  cpp/pos_comma-tb.cfg                                 cpp/braced_init_template_decltype.cpp
30318  cpp/Issue_2949.cfg                                   cpp/Issue_2949.cpp
30319  cpp/Issue_2886.cfg                                   cpp/Issue_2886.cpp

30320  cpp/sp_return_paren-r.cfg                            cpp/returns.cpp
30321  cpp/sp_return_paren-f.cfg                            cpp/returns.cpp
30322  cpp/sp_return_brace-r.cfg                            cpp/returns.cpp
30323  cpp/sp_return_brace-f.cfg                            cpp/returns.cpp
30324  common/mod_paren_on_return-a.cfg                     cpp/returns.cpp
30325  common/mod_paren_on_return-r.cfg                     cpp/returns.cpp
30326  cpp/indent_off_after_return.cfg                      cpp/indent_off_after_return.cpp
30327  cpp/indent_off_after_return.cfg                      cpp/indent_off_after_return.cpp
30328  cpp/nl_type_brace_init_lst-f.cfg                     cpp/call_brace_init_lst.cpp
30329  cpp/nl_type_brace_init_lst-r.cfg                     cpp/call_brace_init_lst.cpp

30330  cpp/Issue_3080.cfg                                   cpp/Issue_3080.cpp

30340  cpp/issue_3105_1_neg.cfg                             cpp/issue_3105_1.cpp
30341  cpp/issue_3105_1_pos.cfg                             cpp/issue_3105_1.cpp
30342  cpp/issue_3105_1_zero.cfg                            cpp/issue_3105_1.cpp
30343  cpp/issue_3105_2_neg.cfg                             cpp/issue_3105_2.cpp
30344  cpp/issue_3105_2_pos.cfg                             cpp/issue_3105_2.cpp
30345  cpp/issue_3105_2_zero.cfg                            cpp/issue_3105_2.cpp

30400  common/attribute_specifier_seqs.cfg                  cpp/attribute_specifier_seqs.cpp
30401  cpp/Issue_2570.cfg                                   cpp/Issue_2570.cpp

# function def newlines
30701  common/func-def-1.cfg                                cpp/function-def.cpp
30702  common/func-def-2.cfg                                cpp/function-def.cpp
30703  common/func-def-3.cfg                                cpp/function-def.cpp

30705  cpp/func_param.cfg                                   cpp/func_param.cpp
30706  cpp/bug_1020.cfg                                     cpp/bug_1020.cpp

30711  common/del_semicolon.cfg                             cpp/semicolons.cpp
30712  common/empty.cfg                                     cpp/bug_1158.cpp
30713  common/empty.cfg                                     cpp/fix_for_relational_operators.cpp
30714  common/empty.cfg                                     cpp/Issue_1733.cpp
30715  cpp/Issue_2942.cfg                                   cpp/Issue_2942.cpp

30720  cpp/wessex.cfg                                       cpp/custom-open-2.cpp
30721  cpp/Issue_2386.cfg                                   cpp/Issue_2386.cpp

30730  cpp/qt-1.cfg                                         cpp/qt-1.cpp
30731  cpp/nl_access_spec.cfg                               cpp/qt-1.cpp
30732  cpp/Issue_2734.cfg                                   cpp/Issue_2734.cpp

30740  cpp/sef.cfg                                          cpp/sef.cpp
30741  cpp/al.cfg                                           cpp/al.cpp
30742  cpp/indent_columns-2.cfg                             cpp/delete.cpp

30745  cpp/Issue_2170.cfg                                   cpp/Issue_2170.cpp
30746  cpp/DefaultAndDelete-0.cfg                           cpp/DefaultAndDelete.cpp
30747  cpp/DefaultAndDelete-1.cfg                           cpp/DefaultAndDelete.cpp
30748  cpp/DefaultAndDelete-2.cfg                           cpp/DefaultAndDelete.cpp

# TODO: Reduce the number of options, leave only those that affect lambda.
# TODO: Add tests for nested lambdas.

30750  cpp/ben_021.cfg                                      cpp/lambda.cpp
30751  cpp/lambda1.cfg                                      cpp/lambda.cpp
30752  cpp/lambda2.cfg                                      cpp/lambda.cpp
30753  cpp/lambda3.cfg                                      cpp/lambda2.cpp
30754  cpp/indent_with_tabs-0.cfg                           cpp/bug_i_682.h
30755  common/empty.cfg                                     cpp/bug_i_938.h
30756  cpp/bug_1296-T.cfg                                   cpp/bug_1296.cpp
30757  cpp/Issue_3054.cfg                                   cpp/Issue_3054.cpp
30758  cpp/Issue_3054-2.cfg                                 cpp/Issue_3054-2.cpp
30759  cpp/lambda4.cfg                                      cpp/lambda2.cpp

30760  cpp/bug_1296-F.cfg                                   cpp/bug_1296.cpp
30761  cpp/out-668-F.cfg                                    cpp/out-668.cpp
30762  cpp/out-668-T.cfg                                    cpp/out-668.cpp
30763  cpp/Issue_2166.cfg                                   cpp/Issue_2166.cpp
30764  cpp/Issue_2591.cfg                                   cpp/Issue_2591.cpp
30765  cpp/sp_cpp_lambda_square_paren-i.cfg                 cpp/lambda.cpp
30766  cpp/sp_cpp_lambda_square_brace-i.cfg                 cpp/lambda.cpp
30767  cpp/sp_cpp_lambda_paren_brace-i.cfg                  cpp/lambda.cpp
30768  cpp/sp_cpp_lambda_fparen-i.cfg                       cpp/sp_cpp_lambda_fparen.cpp

30770  cpp/sp_cpp_lambda_square_paren-r.cfg                 cpp/lambda.cpp
30771  cpp/sp_cpp_lambda_square_paren-f.cfg                 cpp/lambda.cpp
30772  cpp/sp_cpp_lambda_square_brace-r.cfg                 cpp/lambda.cpp
30773  cpp/sp_cpp_lambda_square_brace-f.cfg                 cpp/lambda.cpp
30774  cpp/sp_cpp_lambda_paren_brace-r.cfg                  cpp/lambda.cpp
30775  cpp/sp_cpp_lambda_paren_brace-f.cfg                  cpp/lambda.cpp
30776  cpp/sp_cpp_lambda_fparen-r.cfg                       cpp/sp_cpp_lambda_fparen.cpp
30777  cpp/sp_cpp_lambda_fparen-f.cfg                       cpp/sp_cpp_lambda_fparen.cpp

30780  cpp/lambda_in_one_liner.cfg                          cpp/lambda_in_one_liner.cpp
30781  cpp/lambda_in_one_liner.cfg                          cpp/lambda_brace_list.cpp

30790  cpp/Issue_2795.cfg                                   cpp/Issue_2795.cpp
30791  cpp/Issue_3203.cfg                                   cpp/Issue_3203.cpp

30800  common/star_pos-0.cfg                                cpp/align-star-amp-pos.cpp
30801  cpp/star_pos-1.cfg                                   cpp/align-star-amp-pos.cpp
30802  cpp/star_pos-2.cfg                                   cpp/align-star-amp-pos.cpp
30803  cpp/bug_1403.cfg                                     cpp/bug_1403.cpp
30805  cpp/ptr_star-1.cfg                                   cpp/ptr-star.cpp
30806  cpp/ptr_star-2.cfg                                   cpp/ptr-star.cpp
30807  cpp/ptr_star-3.cfg                                   cpp/ptr-star.cpp
30808  cpp/sp_after_ptr_star_qualifier-f.cfg                cpp/ptr-star.cpp
30809  common/empty.cfg                                     cpp/bug_1289.cpp

30810  cpp/ben_022.cfg                                      cpp/ptr-star.cpp
30811  cpp/avalon4.cfg                                      cpp/misc3.cpp
30812  cpp/ben_023.cfg                                      cpp/misc4.cpp
30813  cpp/ben_024.cfg                                      cpp/misc5.cpp
30814  common/empty.cfg                                     cpp/misc6.cpp
30815  common/width-2.cfg                                   cpp/cmt-reflow.cpp
30816  cpp/cu.cfg                                           cpp/for_long.cpp
30817  common/indent_columns-3.cfg                          cpp/cmt-cpp-cont.cpp
30818  cpp/bug_1169.cfg                                     cpp/bug_1169.cpp
30819  cpp/bug_1170.cfg                                     cpp/bug_1170.cpp

30820  cpp/pp_define_at_level-1.cfg                         cpp/pp-define-indent.cpp
30821  common/empty.cfg                                     cpp/pp_indent_case.cpp
30822  common/empty.cfg                                     cpp/pp_indent_brace.cpp
30823  common/empty.cfg                                     cpp/pp_indent_func_def.cpp
30824  common/empty.cfg                                     cpp/pp_indent_extern.cpp
30825  cpp/Issue_1966.cfg                                   cpp/Issue_1966.cpp
30826  cpp/Issue_2319.cfg                                   cpp/Issue_2319.cpp
30827  cpp/Issue_1167.cfg                                   cpp/Issue_1167.cpp
30828  cpp/bug_1691.cfg                                     cpp/bug_1691.cpp
30829  cpp/ptr_star-2.cfg                                   cpp/Issue_2726.cpp

30830  common/kw_subst2.cfg                                 cpp/kw_subst.cpp
30831  common/kw_subst.cfg                                  cpp/kw_subst2.cpp
30832  common/kw_subst4.cfg                                 cpp/kw_subst.cpp

30840  cpp/nl_func_type_name_remove.cfg                     cpp/nl_func_type_name.cpp
30841  cpp/nl_func_type_name_force.cfg                      cpp/nl_func_type_name.cpp
30842  cpp/nl_func_type_name_class.cfg                      cpp/nl_func_type_name.cpp
30843  cpp/nl_func_type_name_mixed.cfg                      cpp/nl_func_type_name.cpp
30844  cpp/Issue_2771.cfg                                   cpp/Issue_2771.cpp
30845  cpp/ben_026.cfg                                      cpp/deref.cpp
30846  cpp/Issue_3197.cfg                                   cpp/Issue_3197.h

30850  common/sp_cmt_cpp_start_force.cfg                    cpp/sp_cmt_cpp_start.cc
30852  cpp/sp_paren_qualifier-f.cfg                         cpp/Issue_2138.cpp
30853  cpp/sp_paren_noexcept-f.cfg                          cpp/noexcept.cpp
30854  cpp/Issue_1703.cfg                                   cpp/Issue_1703.cpp
30855  common/empty.cfg                                     cpp/cpp_move.cpp
30856  cpp/sp_cmt_cpp_region-f.cfg                          cpp/sp_cmt_cpp_region.cpp
30857  cpp/sp_cmt_cpp_region-r.cfg                          cpp/sp_cmt_cpp_region.cpp

30860  cpp/sf574.cfg                                        cpp/sf574.cpp

30870  common/cmt_insert-0.cfg                              cpp/cmt_insert.cpp
30871  common/cmt_insert-1.cfg                              cpp/cmt_insert.cpp
30872  cpp/Issue_2752.cfg                                   cpp/Issue_2752.cpp
#      will also use the file footer.txt

30880  common/empty.cfg                                     cpp/bug_1758.cpp
30881  cpp/bug_1758-f.cfg                                   cpp/bug_1758-f.cpp

30900  common/region-0.cfg                                  cpp/region.cpp
30901  common/region-1.cfg                                  cpp/region.cpp
30902  common/region-2.cfg                                  cpp/region.cpp
30903  common/region-3.cfg                                  cpp/region.cpp
30907  cpp/Issue_1813.cfg                                   cpp/Issue_1813.cpp
30908  cpp/Issue_1813.cfg                                   cpp/Issue_1813-2.cpp
30909  cpp/Issue_1813.cfg                                   cpp/Issue_1813-3.cpp

30910  cpp/indent_namespace-t.cfg                           cpp/indent_namespace.h
30911  cpp/indent_class-t.cfg                               cpp/indent_namespace.h
30912  cpp/long_namespace.cfg                               cpp/long_namespace.cpp
30913  cpp/indent_namespace-t.cfg                           cpp/indent_namespace2.h
30914  cpp/indent_namespace_single_indent.cfg               cpp/indent_namespace_single_indent.h
30915  common/empty.cfg                                     cpp/bug_1235.cpp
30916  common/empty.cfg                                     cpp/Issue_1737.cpp
30917  cpp/Issue_2345.cfg                                   cpp/Issue_2345-3.cpp
30918  cpp/Issue_2345.cfg                                   cpp/Issue_2345-4.cpp
30919  common/empty.cfg                                     cpp/Issue_2387.cpp

30920  cpp/ben_027.cfg                                      cpp/indent-off.cpp
30921  cpp/ben_028.cfg                                      cpp/variadic-template.h
30922  cpp/sp_before_ellipsis-f.cfg                         cpp/variadic-template.h
30923  cpp/sf.2886991-f.cfg                                 cpp/sf.2886991.cpp
30924  cpp/sf.2886991-r.cfg                                 cpp/sf.2886991.cpp
30925  cpp/sp_func_call_empty.cfg                           cpp/function-def.cpp
30926  cpp/sp_func_class_empty.cfg                          cpp/function-def.cpp
30927  cpp/sp_func_def_empty.cfg                            cpp/function-def.cpp
30928  cpp/sp_func_proto_empty.cfg                          cpp/function-def.cpp
30929  cpp/bug_1324.cfg                                     cpp/bug_1324.cpp

30930  common/indent_var_def.cfg                            cpp/indent_var_def.cpp
30931  cpp/indent_var_def_cont-t.cfg                        cpp/indent_var_def_cont.cpp
30932  common/empty.cfg                                     cpp/indent_var_def_cont.cpp
30933  cpp/indent_paren_after_func_def-t.cfg                cpp/indent_paren_after_func_def.cpp
30934  cpp/indent_paren_after_func_decl-t.cfg               cpp/indent_paren_after_func_decl.cpp
30935  cpp/ben_029.cfg                                      cpp/indent-misc.cpp
30936  cpp/indent_braces_no.cfg                             cpp/indent_braces_no.h
30937  cpp/indent_param.cfg                                 cpp/indent_param.cpp
30938  common/empty.cfg                                     cpp/indent_switch_pp.cpp
30939  cpp/indent_paren_after_func_call-t.cfg               cpp/indent_paren_after_func_call.cpp

30940  common/mod_case_brace_rm.cfg                         cpp/case-brace-remove.cpp
30941  cpp/Issue_2150.cfg                                   cpp/Issue_2150.cpp
30942  cpp/Issue_1692.cfg                                   cpp/Issue_1692.cpp
30943  cpp/Issue_2735.cfg                                   cpp/Issue_2735.cpp
#30944
30945  common/sp_before_byref-r.cfg                         cpp/sf.3266678.cpp
30946  cpp/sf.3315874.cfg                                   cpp/sf.3315874.h
30947  cpp/bug_1689.cfg                                     cpp/bug_1689.cpp
30948  cpp/sp_before_byref_func.cfg                         cpp/sp_before_byref_func.cpp
30949  cpp/Issue_2757.cfg                                   cpp/Issue_2757.cpp

30950  cpp/sp_before_tr_emb_cmt-f.cfg                       cpp/sp_before_tr_emb_cmt_input.cpp
30951  cpp/sp_before_tr_emb_cmt-a.cfg                       cpp/sp_before_tr_emb_cmt_input.cpp
30952  cpp/sp_before_constr_colon.cfg                       cpp/sp_before_constr_colon.cpp
30953  cpp/constr_colon.cfg                                 cpp/constr_colon.cpp
30954  cpp/Issue_2305.cfg                                   cpp/Issue_2305.cpp
30955  cpp/indent_ctor_init.cfg                             cpp/indent_ctor_init.cpp
30956  cpp/indent_ctor_init_following.cfg                   cpp/indent_ctor_init.cpp
30957  cpp/negative_indent.cfg                              cpp/class-init.cpp
30958  cpp/nl_for_leave_one_liners-f.cfg                    cpp/nl_for_leave_one_liners.cpp
30959  cpp/nl_for_leave_one_liners-t.cfg                    cpp/nl_for_leave_one_liners.cpp

30960  cpp/Issue_2151.cfg                                   cpp/Issue_2151.cpp
30961  cpp/Issue_2232.cfg                                   cpp/Issue_2232.cpp
30962  cpp/nl_assign_leave_one_liners.cfg                   cpp/nl_assign_leave_one_liners.cpp
30963  cpp/Issue_2907.cfg                                   cpp/Issue_2907.cpp
30964  cpp/Issue_2823.cfg                                   cpp/Issue_2823.cpp
30965  cpp/return_remove.cfg                                cpp/return_remove.cpp
30966  cpp/return_dont_remove.cfg                           cpp/return_remove.cpp

30970  cpp/Issue_2219.cfg                                   cpp/Issue_2219.cpp
30971  cpp/Issue_2224.cfg                                   cpp/Issue_2224.cpp
30972  cpp/Issue_2229.cfg                                   cpp/Issue_2229.cpp
30973  cpp/Issue_2236.cfg                                   cpp/Issue_2236.cpp
30974  cpp/using-alias-in-define.cfg                        cpp/using-alias-in-define.cpp

31000  common/empty.cfg                                     cpp/digraph.cpp
31001  cpp/ben_030.cfg                                      cpp/digraph.cpp

31050  common/empty.cfg                                     cpp/pos_assign.cpp
31051  cpp/pos_assign.cfg                                   cpp/pos_assign.cpp

31101  common/empty.cfg                                     cpp/nl_before_brace_open_test.cpp
31102  cpp/nl_before_brace_open_1.cfg                       cpp/nl_before_brace_open_test.cpp
31103  cpp/nl_before_brace_open_2.cfg                       cpp/nl_before_brace_open_test.cpp
31104  cpp/nl_before_brace_open_3.cfg                       cpp/nl_before_brace_open_test.cpp

31400  cpp/sp_trailing_return-f.cfg                         cpp/trailing_return.cpp
31401  cpp/sp_trailing_return-r.cfg                         cpp/trailing_return.cpp
31402  cpp/sp_assign_default.cfg                            cpp/trailing_return.cpp
31403  cpp/sp_trailing_return_byref_ptr-left.cfg            cpp/trailing_return_byref_ptr.cpp
31404  cpp/sp_trailing_return_byref_ptr-right.cfg           cpp/trailing_return_byref_ptr.cpp

31450  cpp/indent_paren_close_0.cfg                         cpp/indent_func_alias_prototype.cpp
31451  cpp/indent_paren_close_1.cfg                         cpp/indent_func_alias_prototype.cpp
31452  cpp/indent_paren_close_2.cfg                         cpp/indent_func_alias_prototype.cpp

31562  cpp/space_indent_class-t_columns-4.cfg               cpp/sf562.cpp
31567  common/align_same_func_call_params-t.cfg             cpp/sf567.cpp
31568  cpp/Issue_2368.cfg                                   cpp/Issue_2368.cpp

31583  common/empty.cfg                                     cpp/sf583.cpp
31593  common/indent_continue-8.cfg                         cpp/sf593.cpp
31594  common/issue_672.cfg                                 cpp/issue_672.cpp
31595  cpp/issue_1778.cfg                                   cpp/issue_1778.cpp
31596  cpp/issue_1782.cfg                                   cpp/issue_1782.cpp
31597  cpp/issue_1804.cfg                                   cpp/issue_1804.cpp
31598  cpp/Issue_1753.cfg                                   cpp/Issue_1753.cpp
31599  cpp/sp_paren_ellipsis-i.cfg                          cpp/parameter-packs.cpp

31600  cpp/sp_paren_ellipsis-f.cfg                          cpp/parameter-packs.cpp
31601  cpp/sp_paren_ellipsis-r.cfg                          cpp/parameter-packs.cpp
31602  cpp/sp_sizeof_ellipsis-f.cfg                         cpp/parameter-packs.cpp
31603  cpp/sp_sizeof_ellipsis-r.cfg                         cpp/parameter-packs.cpp
31604  cpp/sp_before_ellipsis-f.cfg                         cpp/parameter-packs.cpp
31605  cpp/sp_before_ellipsis-r.cfg                         cpp/parameter-packs.cpp
31606  cpp/sp_type_ellipsis-f.cfg                           cpp/parameter-packs.cpp
31607  cpp/sp_type_ellipsis-r.cfg                           cpp/parameter-packs.cpp
31608  cpp/sp_sizeof_ellipsis_paren-f.cfg                   cpp/parameter-packs.cpp
31609  cpp/sp_sizeof_ellipsis_paren-r.cfg                   cpp/parameter-packs.cpp

31610  cpp/Issue_2085.cfg                                   cpp/Issue_2085.cpp
31611  cpp/sp_sizeof_ellipsis-i.cfg                         cpp/parameter-packs.cpp
31612  cpp/sp_sizeof_ellipsis_paren-i.cfg                   cpp/parameter-packs.cpp
31613  cpp/sp_type_ellipsis-i.cfg                           cpp/parameter-packs.cpp
31614  cpp/Issue_3309-i.cfg                                 cpp/Issue_3309.cpp
31615  cpp/Issue_3309-f.cfg                                 cpp/Issue_3309.cpp
31616  cpp/Issue_3309-r.cfg                                 cpp/Issue_3309.cpp

31620  common/sp_after_type-f.cfg                           cpp/sp_after_type.cpp
31621  cpp/sp_after_type-i.cfg                              cpp/sp_after_type.cpp
31622  cpp/sp_after_cast-f.cfg                              cpp/sp_after_type.cpp
31623  cpp/sp_after_cast-r.cfg                              cpp/sp_after_type.cpp
31624  cpp/sp_before_ptr_star-f.cfg                         cpp/sp_after_type.cpp
31625  cpp/sp_before_ptr_star-r.cfg                         cpp/sp_after_type.cpp
31626  cpp/sp_decltype_paren-f.cfg                          cpp/issue_1916.cpp
31627  cpp/sp_decltype_paren-r.cfg                          cpp/issue_1916.cpp
31628  cpp/sp_after_decltype-f.cfg                          cpp/issue_1916.cpp
31629  cpp/sp_after_decltype-r.cfg                          cpp/issue_1916.cpp

31630  common/sp_after_type-f.cfg                           cpp/issue_1916.cpp
31631  common/sp_after_type-r.cfg                           cpp/issue_1916.cpp
31632  cpp/issue_1916.cfg                                   cpp/issue_1916.cpp
31633  cpp/sp_after_decltype-f.cfg                          cpp/sp_after_decltype.cpp
31634  cpp/sp_after_decltype-r.cfg                          cpp/sp_after_decltype.cpp
31635  common/empty.cfg                                     cpp/sp_decltype.cpp
31636  cpp/Issue_1923.cfg                                   cpp/Issue_1923.cpp
31637  cpp/Issue_3446.cfg                                   cpp/Issue_3446.cpp
31638  cpp/sp_between_ptr_ref-a.cfg                         cpp/misc2.cpp
31639  cpp/sp_between_ptr_ref-r.cfg                         cpp/misc2.cpp
31640  cpp/sp_between_ptr_ref-f.cfg                         cpp/misc2.cpp
31641  cpp/sp_between_ptr_ref-i.cfg                         cpp/misc2.cpp

31660  cpp/var_def_blks-1.cfg                               cpp/issue_1919.cpp
31661  cpp/Issue_3097.cfg                                   cpp/Issue_3097.cpp
31662  cpp/var_def_blks-1.cfg                               cpp/var_def_blks.cpp
31663  cpp/var_def_blks-2.cfg                               cpp/var_def_blks.cpp
31664  cpp/var_def_blks-3.cfg                               cpp/var_def_blks.cpp
31665  cpp/var_def_blks-4.cfg                               cpp/var_def_blks.cpp
31666  cpp/var_def_blks-5.cfg                               cpp/var_def_blks.cpp
31667  cpp/var_def_blks-6.cfg                               cpp/var_def_blks.cpp
31668  cpp/var_def_blks-7.cfg                               cpp/var_def_blks.cpp

31700  cpp/toggle_processing_cmt.cfg                        cpp/toggle_processing_cmt.cpp
31701  cpp/toggle_processing_cmt2.cfg                       cpp/toggle_processing_cmt2.cpp
31702  cpp/toggle_processing_cmt3.cfg                       cpp/toggle_processing_cmt.cpp
31703  cpp/toggle_processing_cmt4.cfg                       cpp/toggle_processing_cmt.cpp

31710  common/empty.cfg                                     cpp/string_replace_tab_chars.cpp
31711  cpp/string_replace_tab_chars-t.cfg                   cpp/string_replace_tab_chars.cpp

31720  cpp/ben_031.cfg                                      cpp/bit-colon.cpp
31721  cpp/Issue_2689.cfg                                   cpp/Issue_2689.cpp

31730  cpp/sp_arith-a.cfg                                   cpp/ms-style-ref.cpp

31740  common/empty.cfg                                     cpp/I2102.cpp

32000  cpp/sp_skip_vbrace_tokens.cfg                        cpp/sp_skip_vbrace_tokens.cpp
32001  common/empty.cfg                                     cpp/issue_547_for_each.cpp
32002  common/empty.cfg                                     cpp/proto-wrap.cpp
32003  cpp/align_var_class_span-1.cfg                       cpp/issue_633_typename.cpp
32004  common/empty.cfg                                     cpp/issue_624_angle.cpp
32005  cpp/align_var_class_span-1.cfg                       cpp/issue_633_typename.cpp
32006  common/space_indent_columns-4.cfg                    cpp/bug_i_687.cpp
32007  common/Issue_3052.cfg                                cpp/Issue_3052.cpp
32008  cpp/Issue_3034.cfg                                   cpp/Issue_3034.cpp
32009  cpp/Issue_3422-1.cfg                                 cpp/Issue_3422.cpp
32010  cpp/Issue_3422-2.cfg                                 cpp/Issue_3422.cpp

32100  cpp/cpp17.cfg                                        cpp/cpp17.cpp
32105  cpp/I2103.cfg                                        cpp/I2103.cpp

32115  cpp/2185.cfg                                         cpp/2185.cpp

33000  cpp/tab-0-11.cfg                                     cpp/tab-0.cpp
33001  cpp/indent_columns-11.cfg                            cpp/tab-1.cpp
33002  common/empty.cfg                                     cpp/cmt_convert_tab_to_spaces.cpp
33003  cpp/cmt_convert_tab_to_spaces-t.cfg                  cpp/cmt_convert_tab_to_spaces.cpp
33004  common/sp_cmt_cpp_start-a.cfg                        cpp/DoxygenComments.cpp
33005  cpp/sp_cmt.cfg                                       cpp/DoxygenComments.cpp
33006  common/empty.cfg                                     cpp/string_replace_tab_chars.cpp
33007  common/empty.cfg                                     cpp/NewLine.cpp
33008  cpp/NewLine-r.cfg                                    cpp/NewLine.cpp
33009  cpp/NewLine-f.cfg                                    cpp/NewLine0.cpp

33010  cpp/indent_columns-4.cfg                             cpp/Q_EMIT.cpp
33011  cpp/indent_class-t_columns-4.cfg                     cpp/static.h
33012  cpp/kdepim2.cfg                                      cpp/Q_SIGNAL_SLOT.cpp
33013  cpp/kdepim3.cfg                                      cpp/Q_2.cpp
33014  cpp/indent_columns-4.cfg                             cpp/DB.cpp
33015  cpp/kdepim5.cfg                                      cpp/Q_FOREACH.cpp
33016  cpp/indent_once.cfg                                  cpp/indent.cpp
33017  cpp/bug_1160.cfg                                     cpp/bug_1160.cpp
#33018
33019  cpp/bug_657.cfg                                      cpp/bug_657.cpp

33020  cpp/sp_cmt.cfg                                       cpp/bug_662.cpp
33021  cpp/bug_633.cfg                                      cpp/bug_633.cpp
33022  common/empty.cfg                                     cpp/bug_634.cpp
33023  cpp/indent_once.cfg                                  cpp/bug_651.cpp
33024  common/empty.cfg                                     cpp/bug_653.cpp
33025  common/empty.cfg                                     cpp/bug_654.cpp
33026  common/empty.cfg                                     cpp/bug_631.cpp
33027  cpp/bug_664.cfg                                      cpp/bug_664.cpp
33028  cpp/sp_inside_braces_empty-r.cfg                     cpp/braces_empty.cpp
33029  cpp/cast.cfg                                         cpp/cast.cpp

33030  common/space_indent_columns-4.cfg                    cpp/Q_FOREVER.cpp
33031  cpp/align_assign_span-1.cfg                          cpp/bug_612.cpp
33032  cpp/bug_670.cfg                                      cpp/bug_670.cpp
33033  cpp/bug_670.cfg                                      cpp/bug_670.h
33034  common/bug_671.cfg                                   cpp/bug_671.h
33035  cpp/cmt_cpp_to_c-t.cfg                               cpp/patch_32.cpp
33036  common/empty.cfg                                     cpp/bug_663.cpp
33037  cpp/func_class.cfg                                   cpp/func_class.cpp
33038  cpp/func_class.cfg                                   cpp/func_class.h
33039  cpp/mod_remove_empty_return-t.cfg                    cpp/mod_remove_empty_return.cpp

33040  cpp/nl_after_func_proto_group-3.cfg                  cpp/bug_i_411.cpp
33041  cpp/nl_after_func_proto-3.cfg                        cpp/bug_i_411.cpp
33042  cpp/nl_after_func_class_proto-3.cfg                  cpp/bug_i_411.cpp
33043  cpp/bug_i_478.cfg                                    cpp/bug_i_478.cpp
33044  cpp/sp_before_comma-f.cfg                            cpp/bug_i_481.cpp
33045  cpp/indent_columns-4.cfg                             cpp/bug_i_width.cpp
33046  cpp/bug_i_409-split.cfg                              cpp/bug_i_409.cpp
33047  cpp/bug_i_409-create.cfg                             cpp/bug_i_409.cpp
33048  cpp/bug_i_405.cfg                                    cpp/bug_i_405.cpp
33049  cpp/pp-pragma.cfg                                    cpp/pp-pragma.cpp

33050  common/empty.cfg                                     cpp/issue_523.cpp
33051  common/empty.cfg                                     cpp/bug_i_503.cpp
33052  common/empty.cfg                                     cpp/bug_i_512.cpp
33053  common/space_indent_columns-4.cfg                    cpp/for_auto.cpp
33054  common/indent_columns-3.cfg                          cpp/bug_i_825.cpp
33056  common/empty.cfg                                     cpp/bug_33056.cpp
33057  cpp/bug_1349.cfg                                     cpp/bug_1349.cpp
33058  cpp/Issue_3164.cfg                                   cpp/Issue_3164.cpp
33039  cpp/mod_remove_empty_return-t.cfg                    cpp/mod_remove_empty_return.cpp
33059  cpp/mod_remove_empty_return-t.cfg                    cpp/mod_remove_empty_return-2.cpp

33060  common/empty.cfg                                     cpp/if_constexpr.cpp
33061  common/empty.cfg                                     cpp/if_chain_braces.cpp
33062  cpp/mod_full_brace_if_chain-1.cfg                    cpp/if_chain_braces.cpp
33063  common/mod_full_brace_if_chain_only-t.cfg            cpp/if_chain_braces.cpp
33064  cpp/if_chain_braces_2.cfg                            cpp/if_chain_braces.cpp
33065  cpp/Issue_3316.cfg                                   cpp/Issue_3316.cpp
33066  cpp/mod_full_brace_if_chain-2.cfg                    cpp/if_chain_braces.cpp
33067  cpp/mod_full_brace_if_chain-3.cfg                    cpp/if_chain_braces.cpp

33069  cpp/Issue_2195.cfg                                   cpp/Issue_2195.cpp

33070  cpp/code_width-70.cfg                                cpp/multi_line.cpp
33071  cpp/multi_line_1.cfg                                 cpp/multi_line.cpp
33072  cpp/multi_line_2.cfg                                 cpp/multi_line.cpp
33073  cpp/multi_line_3.cfg                                 cpp/multi_line.cpp
33074  cpp/multi_line_4.cfg                                 cpp/multi_line.cpp
33075  cpp/multi_line_5.cfg                                 cpp/multi_line.cpp
33076  cpp/multi_line_6.cfg                                 cpp/multi_line.cpp
33077  cpp/multi_line_7.cfg                                 cpp/multi_line.cpp
33078  cpp/multi_line_8.cfg                                 cpp/multi_line.cpp
33079  cpp/multi_line_9.cfg                                 cpp/multi_line.cpp

33080  cpp/multi_line_10.cfg                                cpp/multi_line.cpp
33081  common/space_indent_columns-4.cfg                    cpp/bug_i_552.cpp
33082  common/empty.cfg                                     cpp/namespace_namespace.cpp
33083  cpp/bug_i_359.cfg                                    cpp/bug_i_359.cpp
33084  cpp/op_sym_empty.cfg                                 cpp/op_sym_empty.cpp
33085  cpp/indent_with_tabs-0.cfg                           cpp/bug_i_323.cpp
33086  cpp/indent_class-t.cfg                               cpp/bug_i_568.cpp
33087  common/space_indent_columns-4.cfg                    cpp/bug_i_596.cpp
33088  common/empty.cfg                                     cpp/bug_i_197.cpp
33089  cpp/indent_class-t_columns-4.cfg                     cpp/bug_643.cpp

33090  common/empty.cfg                                     cpp/gh555.cpp
33091  cpp/no_squeeze_ifdef.cfg                             cpp/squeeze_ifdef.cpp
33092  cpp/squeeze_ifdef.cfg                                cpp/squeeze_ifdef.cpp
33093  cpp/sp_angle_paren-f.cfg                             cpp/sp_angle_paren.cpp
33094  cpp/sp_angle_paren_empty.cfg                         cpp/sp_angle_paren.cpp
33095  cpp/bug_i_322.cfg                                    cpp/bug_i_322.cpp
33096  cpp/squeeze_ifdef_top.cfg                            cpp/squeeze_ifdef.cpp
33097  cpp/pos_enum_comma-tf.cfg                            cpp/enum_comma.h
33098  cpp/pos_comma-lf.cfg                                 cpp/enum_comma.h
33099  cpp/enum_comma-3.cfg                                 cpp/enum_comma.h

33100  cpp/enum_comma-4.cfg                                 cpp/enum_comma.h
33101  cpp/pos_comma-tb.cfg                                 cpp/enum_comma.h
33102  cpp/enum_comma-6.cfg                                 cpp/enum_comma.h
33103  cpp/bug_858-f.cfg                                    cpp/bug_858.cpp
33104  cpp/bug_858-r.cfg                                    cpp/bug_858.cpp
33105  cpp/bug_1001.cfg                                     cpp/bug_1001.cpp
33106  common/bool-pos-eol-force.cfg                        cpp/pos_bool_in_template.h
33107  cpp/Issue_2688.cfg                                   cpp/Issue_2688.cpp
33108  cpp/Issue_2045.cfg                                   cpp/Issue_2045.cpp
33109  common/empty.cfg                                     cpp/Issue_3205.cpp

33110  cpp/enum.cfg                                         cpp/enum.cpp
33120  cpp/Issue_2149.cfg                                   cpp/Issue_2149.cpp

33150  cpp/indent_columns-4.cfg                             cpp/bug_i_753.cpp
33151  cpp/bug_i_752.cfg                                    cpp/bug_i_752.cpp
33152  cpp/bug_1004.cfg                                     cpp/bug_1004.cpp

33160  common/sp_before_byref-r.cfg                         cpp/bug_1112.cpp
33161  common/sp_before_byref-r.cfg                         cpp/byref-3.cpp
33162  cpp/sp_not_not.cfg                                   cpp/sp_not_not.cpp

33180  cpp/pp_multi_comment.cfg                             cpp/pp_multi_comment.cpp
33181  cpp/Issue_2759.cfg                                   cpp/Issue_2759.cpp
33182  cpp/Issue_2794.cfg                                   cpp/Issue_2794.cpp

33200  cpp/cmt_multi_first_len_minimum-1.cfg                cpp/first_len_minimum.cpp

33201  cpp/indent_ctor_members_twice.cfg                    cpp/indent_ctor_members_twice.cpp
33202  cpp/initlist_leading_commas.cfg                      cpp/initlist_leading_commas.cpp
33203  cpp/Issue_2574.cfg                                   cpp/Issue_2574.cpp
33204  cpp/Issue_2582.cfg                                   cpp/Issue_2582.cpp
33205  cpp/Issue_3198.cfg                                   cpp/Issue_3198.cpp

33210  cpp/disable_nl_cont.cfg                              cpp/templates4.cpp
33211  cpp/disable_nl_cont.cfg                              cpp/pp_multi_comment.cpp
33212  cpp/disable_nl_cont.cfg                              cpp/pp-define-indent.cpp
33213  cpp/disable_nl_cont.cfg                              cpp/disable_macro.cpp
33214  cpp/Issue_2742.cfg                                   cpp/Issue_2742.cpp
33215  cpp/Issue_3055.cfg                                   cpp/Issue_3055.cpp
33216  cpp/Issue_3055.cfg                                   cpp/Issue_3055-a.cpp
33217  common/empty.cfg                                     cpp/Issue_3113.cpp

34001  common/nl_before_after.cfg                           cpp/nl_before_after.h
34002  common/indent_columns-3.cfg                          cpp/bug_i_793.cpp
34003  cpp/nl_max_blank_in_func-1.cfg                       cpp/nl_max_blank_in_func.cpp
34004  cpp/nl_max_blank_in_func-4.cfg                       cpp/nl_max_blank_in_func.cpp
34005  common/empty.cfg                                     cpp/nl_max_blank_in_func.cpp
34006  common/empty.cfg                                     cpp/bug_i_575.cpp
34007  cpp/indent_with_tabs-0.cfg                           cpp/bug_i_928.cpp

34100  common/empty.cfg                                     cpp/bug_i_525.cpp
34101  common/empty.cfg                                     cpp/bug_i_646.cpp
34105  cpp/bug_i_663.cfg                                    cpp/bug_i_663.cpp
34108  cpp/bug_i_666.cfg                                    cpp/bug_i_666.cpp

34112  cpp/sp_after_cast-r.cfg                              cpp/bug_i_889.cpp
34113  cpp/nl_before_func_body_def-1.cfg                    cpp/bug_902.cpp
34114  cpp/nl_before_func_body_def-2.cfg                    cpp/bug_902.cpp
34115  cpp/nl_before_func_body_def-2.cfg                    cpp/nl_before_func_body_def.cpp
34116  cpp/nl_before_func_body_def-2.cfg                    cpp/issue_2000.cpp
34117  cpp/extern_func.cfg                                  cpp/extern_func.cpp
34118  cpp/Issue_2163.cfg                                   cpp/Issue_2163.cpp

34120  cpp/align_assign_span-1.cfg                          cpp/bug_i_999.cpp
34121  cpp/bug_1717.cfg                                     cpp/bug_1717.cpp
34122  cpp/Issue_2440.cfg                                   cpp/Issue_2440.cpp
34123  cpp/Issue_2440_nl.cfg                                cpp/Issue_2440_nl.cpp

34130  cpp/nl_brace_fparen-f.cfg                            cpp/bug_i_1000.cpp
34131  cpp/nl_brace_fparen-r.cfg                            cpp/bug_i_1000.cpp
34132  cpp/new_op_a.cfg                                     cpp/new_op.cpp
34133  cpp/new_op_f.cfg                                     cpp/new_op.cpp
34134  cpp/new_op_r.cfg                                     cpp/new_op.cpp
34135  cpp/new_op_paren_open_close.cfg                      cpp/new_op.cpp
34136  cpp/sp_balance_nested_parens.cfg                     cpp/sp_balance_nested_parens.cpp

34140  common/empty.cfg                                     cpp/bug_1027.cpp
34141  common/empty.cfg                                     cpp/bug_1005.cpp
34142  common/sp_before_byref-r.cfg                         cpp/I1112-1.cpp
34143  cpp/I1112-2.cfg                                      cpp/I1112-2.cpp
34144  cpp/sp_before_ptr_star-r.cfg                         cpp/I1112-3.cpp
34145  cpp/i683.cfg                                         cpp/i683.cpp
# need to be solved,
#                                                            https://github.com/uncrustify/uncrustify/issues/3924
34146  cpp/sp_bool-f.cfg                                    cpp/bug_1002.cpp
34147  cpp/sp_bool-r.cfg                                    cpp/bug_1002.cpp
34148  cpp/nl_before_if_closing_paren-f.cfg                 cpp/bug_1139.cpp
34149  cpp/nl_before_if_closing_paren-r.cfg                 cpp/bug_1139.cpp

34150  common/empty.cfg                                     cpp/bug_1032.cpp
34151  cpp/indent_else_if-t.cfg                             cpp/bug_666.cpp
34152  common/empty.cfg                                     cpp/bug_1068.cpp
34153  cpp/nl_type_brace_init_lst-f.cfg                     cpp/type_brace_init_lst.cpp
34154  cpp/nl_type_brace_init_lst-r.cfg                     cpp/type_brace_init_lst.cpp
34155  cpp/nl_type_brace_init_lst_open-f.cfg                cpp/type_brace_init_lst.cpp
34156  cpp/nl_type_brace_init_lst_open-r.cfg                cpp/type_brace_init_lst.cpp
34157  cpp/nl_type_brace_init_lst_close-f.cfg               cpp/type_brace_init_lst.cpp
34158  cpp/nl_type_brace_init_lst_close-r.cfg               cpp/type_brace_init_lst.cpp
34159  cpp/sp_type_brace_init_lst-f.cfg                     cpp/type_brace_init_lst.cpp

34160  cpp/sp_type_brace_init_lst-r.cfg                     cpp/type_brace_init_lst.cpp
34161  cpp/sp_inside_type_brace_init_lst-f.cfg              cpp/type_brace_init_lst.cpp
34162  cpp/sp_inside_type_brace_init_lst-r.cfg              cpp/type_brace_init_lst.cpp
34163  cpp/sp_after_type_brace_init_lst_open-f.cfg          cpp/type_brace_init_lst.cpp
34164  cpp/sp_after_type_brace_init_lst_open-r.cfg          cpp/type_brace_init_lst.cpp
34165  cpp/sp_before_type_brace_init_lst_close-f.cfg        cpp/type_brace_init_lst.cpp
34166  cpp/sp_before_type_brace_init_lst_close-r.cfg        cpp/type_brace_init_lst.cpp
34168  cpp/nl_type_brace_init_lst-r.cfg                                   cpp/Issue_2910.cpp
34169  cpp/sp_inside_fparens-f.cfg                          cpp/init-list-call.cpp

34170  common/empty.cfg                                     cpp/i1082.cpp
34171  common/empty.cfg                                     cpp/i1181.cpp
34172  common/space_indent_columns-4.cfg                    cpp/i1165.cpp
34173  cpp/arith-vs-ptr.cfg                                 cpp/i1464.cpp
34174  cpp/arith-vs-ptr.cfg                                 cpp/i1466.cpp
34175  cpp/align_assign_span-1.cfg                          cpp/i1509.cpp
34176  cpp/align_assign_span-1.cfg                          cpp/i1509_bug_1112_correction.cpp
34177  cpp/sp_func_call_paren.cfg                           cpp/sp_func_call_paren.cpp
34178  cpp/Issue_3237.cfg                                   cpp/Issue_3237.cpp
34179  cpp/arith-vs-byref.cfg                               cpp/arith_vs_byref.cpp

34180  cpp/bug_1402.cfg                                     cpp/bug_1402.cpp

34190  cpp/bug_1003.cfg                                     cpp/bug_1003.cpp
34191  common/empty.cfg                                     cpp/comment-align-multiline.cpp
34192  cpp/mod_remove_extra_semicolon-t.cfg                 cpp/i1207.cpp
34193  common/empty.cfg                                     cpp/i1218.cpp
34194  cpp/sp_arith_additive-f.cfg                          cpp/sp_arith_additive.cpp
34195  cpp/sp_arith_additive-r.cfg                          cpp/sp_arith_additive.cpp
34196  cpp/Issue_1460.cfg                                   cpp/Issue_1460.h
34197  cpp/bug_1161.cfg                                     cpp/bug_1161.cpp
34198  cpp/sp_dc.cfg                                        cpp/bug_1249.cpp
34199  common/empty.cfg                                     cpp/not_lambda.cpp

34200  cpp/i1536.cfg                                        cpp/i1536.cpp
34201  cpp/mod_add_long_namespace_closebrace_comment-1.cfg  cpp/i1565.cpp
34202  cpp/mod_add_long_namespace_closebrace_comment-1.cfg  cpp/i1617.cpp
34203  cpp/i1516.cfg                                        cpp/i1516.cpp
34204  cpp/align_func_params_span-1.cfg                     cpp/func_param_indent_leading_comma.cpp
34205  cpp/bug_1395.cfg                                     cpp/bug_1395.cpp
34206  cpp/indent_semicolon_for_paren-t.cfg                 cpp/for_loop_head.cpp
34207  cpp/indent_first_for_expr-t.cfg                      cpp/for_loop_head.cpp
34208  cpp/nl_func_type_name-r.cfg                          cpp/conversion_operator.cpp
34209  cpp/nl-brAfter-fcallParen.cfg                        cpp/lambda_selfcalling.cpp

# TODO: Find relevant test cases for 'override'.
34210  common/empty.cfg                                     cpp/override_virtual.cpp
34211  cpp/anonymous_enum.cfg                               cpp/anonymous_enum.cpp
34212  cpp/mod_add_long_class_closebrace_comment.cfg        cpp/func_class.h

34250  common/empty.cfg                                     cpp/bug_1607.cpp
34251  cpp/bug_1649.cfg                                     cpp/bug_1649.cpp
34252  cpp/nl_after_func_proto_group-3.cfg                  cpp/issue_2001.cpp
34253  cpp/nl_after_func_proto_group-3.cfg                  cpp/friends.cpp
34254  cpp/issue_1985.cfg                                   cpp/issue_1985.cpp
34255  cpp/eat_blanks_after_codewidth.cfg                   cpp/eat_blanks_after_codewidth.cpp
34256  cpp/Issue_2836.cfg                                   cpp/Issue_2836.cpp
34257  cpp/code_width-70.cfg                                cpp/brace_init_stdint_macros.cpp
34258  common/tde.cfg                                       cpp/long_lines.cpp

34280  cpp/UNI-29935.cfg                                    cpp/UNI-29935.cpp

34290  cpp/sp_type_brace_init_lst-f.cfg                     cpp/brace_brace_init_lst.cpp
34291  cpp/sp_type_brace_init_lst-r.cfg                     cpp/brace_brace_init_lst.cpp
34292  cpp/sp_inside_type_brace_init_lst-f.cfg              cpp/brace_brace_init_lst.cpp
34293  cpp/sp_inside_type_brace_init_lst-r.cfg              cpp/brace_brace_init_lst.cpp
34294  cpp/sp_after_type_brace_init_lst_open-f.cfg          cpp/brace_brace_init_lst.cpp
34295  cpp/sp_after_type_brace_init_lst_open-r.cfg          cpp/brace_brace_init_lst.cpp
34296  cpp/i1768.cfg                                        cpp/i1768.cpp
34297  cpp/align_assign_decl_func-0.cfg                     cpp/align-assign-mixed.cpp
34298  cpp/align_assign_decl_func-1.cfg                     cpp/align-assign-mixed.cpp
34299  cpp/align_assign_decl_func-2.cfg                     cpp/align-assign-mixed.cpp

# __asm__
34300  cpp/bug_1236.cfg                                     cpp/bug_1236.cpp
34301  cpp/nl_fdef_brace_cond-f.cfg                         cpp/nl_fdef_brace_cond-f.cpp
34302  cpp/nl_fdef_brace_cond-r.cfg                         cpp/nl_fdef_brace_cond-r.cpp
34303  cpp/nl_fdef_brace_cond-fr.cfg                        cpp/nl_fdef_brace_cond-fr.cpp
34304  cpp/nl_fdef_brace_cond-rf.cfg                        cpp/nl_fdef_brace_cond-rf.cpp
34305  cpp/issue_2124-1.cfg                                 cpp/issue_2124-1.cpp
34306  cpp/issue_2124-2.cfg                                 cpp/issue_2124-2.cpp
34307  cpp/2203.cfg                                         cpp/2203.cpp
34308  cpp/enum_comment_wrap.cfg                            cpp/enum_comment_wrap.cpp
34309  cpp/issue_2209.cfg                                   cpp/issue_2209-1.cpp

34310  cpp/issue_2209.cfg                                   cpp/issue_2209-2.cpp
34311  cpp/Issue_2250.cfg                                   cpp/Issue_2250.cpp
34312  cpp/Issue_2101.cfg                                   cpp/Issue_2101.cpp
34313  cpp/Issue_2437.cfg                                   cpp/Issue_2437.cpp
34314  cpp/Issue_2604.cfg                                   cpp/Issue_2604.cpp
34315  cpp/align_func_proto_thresh_1.cfg                    cpp/align_func_proto_thresh.cpp
34316  cpp/align_func_proto_thresh_2.cfg                    cpp/align_func_proto_thresh.cpp
34317  cpp/align_func_proto_thresh_3.cfg                    cpp/align_func_proto_thresh.cpp
34318  cpp/align_assign_func_proto_1.cfg                    cpp/align_assign_func_proto.cpp
34319  cpp/align_func_proto_thresh_4.cfg                    cpp/align_func_proto_thresh2.cpp

34320  cpp/align_func_proto_thresh_5.cfg                    cpp/align_func_proto_thresh2.cpp
34321  cpp/bug_2285.cfg                                     cpp/bug_2285.cpp
34322  cpp/issue_2623_1.cfg                                 cpp/issue_2623.cpp
34323  cpp/issue_2623_2.cfg                                 cpp/issue_2623.cpp
34324  cpp/issue_2623_3.cfg                                 cpp/issue_2623.cpp
34325  cpp/Issue_3025.cfg                                   cpp/Issue_3025.cpp
34326  cpp/Issue_3040.cfg                                   cpp/Issue_3040.cpp
34327  cpp/Issue_3044.cfg                                   cpp/Issue_3044.cpp
34328  cpp/Issue_3048.cfg                                   cpp/Issue_3048.cpp

34330  cpp/Issue_3061_0nl.cfg                               cpp/Issue_3061_0nl.cpp
34331  cpp/Issue_3061_0nl.cfg                               cpp/Issue_3061_1nl.cpp
34332  cpp/Issue_3061_0nl.cfg                               cpp/Issue_3061_2nl.cpp
34333  cpp/Issue_3061_1nl.cfg                               cpp/Issue_3061_0nl.cpp
34334  cpp/Issue_3061_1nl.cfg                               cpp/Issue_3061_1nl.cpp
34335  cpp/Issue_3061_1nl.cfg                               cpp/Issue_3061_2nl.cpp
34336  cpp/Issue_3061_2nl.cfg                               cpp/Issue_3061_0nl.cpp
34337  cpp/Issue_3061_2nl.cfg                               cpp/Issue_3061_1nl.cpp
34338  cpp/Issue_3061_2nl.cfg                               cpp/Issue_3061_2nl.cpp
34339  cpp/Issue_3061_3nl.cfg                               cpp/Issue_3061_0nl.cpp
34340  cpp/Issue_3061_3nl.cfg                               cpp/Issue_3061_1nl.cpp
34341  cpp/Issue_3061_3nl.cfg                               cpp/Issue_3061_2nl.cpp

34350  cpp/indent_comma_brace.cfg                           cpp/indent_comma_brace_glob.cpp
34351  cpp/indent_comma_brace.cfg                           cpp/indent_comma_brace_func.cpp
30353  common/indent_ternary_operator-1.cfg                 cpp/indent_ternary-1.cpp

34360  cpp/nl_before_struct.cfg                             cpp/nl_before_struct_struct.cpp
34361  cpp/nl_before_struct.cfg                             cpp/nl_before_struct_scoped_enum.cpp

34370  cpp/asm_block_pp.cfg                                 cpp/asm_block_pp.cpp

# test the options sp_ with the value "ignore"
34500  cpp/sp_before_case_colon.cfg                         cpp/sp_before_case_colon.cpp
34501  cpp/sp_endif_cmt.cfg                                 cpp/sp_endif_cmt.cpp
34502  cpp/sp_enum_assign-f.cfg                             cpp/sp_enum_assign.cpp
34503  cpp/sp_enum_assign-i.cfg                             cpp/sp_enum_assign.cpp
34504  cpp/issue_574-i-i.cfg                                cpp/issue_574-i.cpp
34505  cpp/Issue_3220-f.cfg                                 cpp/Issue_3220.cpp
34506  cpp/Issue_3220-i.cfg                                 cpp/Issue_3220.cpp
34507  cpp/Issue_3220-r.cfg                                 cpp/Issue_3220.cpp
34508  cpp/Issue_3220-ir.cfg                                cpp/Issue_3220.cpp
34509  cpp/byref-ir.cfg                                     cpp/byref-2.cpp

34510  cpp/byref-i.cfg                                      cpp/byref-2.cpp
34511  cpp/byref-f.cfg                                      cpp/byref-2.cpp
34512  cpp/byref-r.cfg                                      cpp/byref-2.cpp
34513  cpp/sp_cond_question-ir.cfg                          cpp/sp_cond_question.cpp
34514  cpp/sp_cond_question-i.cfg                           cpp/sp_cond_question.cpp
34515  cpp/sp_cond_question-f.cfg                           cpp/sp_cond_question.cpp
34516  cpp/sp_cond_question-r.cfg                           cpp/sp_cond_question.cpp
34517  cpp/semi-f.cfg                                       cpp/semi.cpp
34518  cpp/semi-i.cfg                                       cpp/semi.cpp
34519  cpp/semi-r.cfg                                       cpp/semi.cpp

34520  cpp/comma-f.cfg                                      cpp/comma.cpp
34521  cpp/comma-i.cfg                                      cpp/comma.cpp
34522  cpp/comma-r.cfg                                      cpp/comma.cpp
34523  cpp/ellipsis-i.cfg                                   cpp/gcc_case_ellipsis.cpp
34524  cpp/sp_bool-i.cfg                                    cpp/bug_1002.cpp
34525  cpp/sp_paren_brace-f.cfg                             cpp/sp_paren_brace.cpp
34526  cpp/sp_paren_brace-i.cfg                             cpp/sp_paren_brace.cpp
34527  cpp/sp_paren_brace-r.cfg                             cpp/sp_paren_brace.cpp
34528  cpp/cmt_trailing_single_line_c_to_cpp.cfg            cpp/cmt_trailing_single_line_c_to_cpp.cpp
34529  cpp/sp_inside_type_brace_init_lst-iif.cfg            cpp/type_brace_init_lst.cpp

34530  cpp/sp_inside_type_brace_init_lst-irf.cfg            cpp/type_brace_init_lst.cpp
34531  cpp/sp_inside_type_brace_init_lst-rf.cfg             cpp/type_brace_init_lst.cpp
34532  cpp/sp_inside_type_brace_init_lst-iii.cfg            cpp/type_brace_init_lst.cpp
34533  cpp/templates-i.cfg                                  cpp/templates.cpp
34534  cpp/templates-r.cfg                                  cpp/templates.cpp
34535  cpp/template_sp-ignore.cfg                           cpp/sp_after_angle.cpp
34536  cpp/template_sp-remove.cfg                           cpp/sp_after_angle.cpp

34540  cpp/sp_byref_paren-i.cfg                             cpp/byref-4.cpp
34541  cpp/sp_byref_paren-a.cfg                             cpp/byref-4.cpp
34542  cpp/sp_byref_paren-r.cfg                             cpp/byref-4.cpp
34543  cpp/sp_byref_paren-f.cfg                             cpp/byref-4.cpp

34550  cpp/nl_throw_expr-i.cfg                              cpp/throws.cpp
34551  cpp/nl_throw_expr-a.cfg                              cpp/throws.cpp
34552  cpp/nl_throw_expr-r.cfg                              cpp/throws.cpp
34553  cpp/nl_throw_expr-f.cfg                              cpp/throws.cpp
34554  cpp/mod_paren_on_throw-i.cfg                         cpp/throws.cpp
34555  cpp/mod_paren_on_throw-a.cfg                         cpp/throws.cpp
34556  cpp/mod_paren_on_throw-r.cfg                         cpp/throws.cpp
34557  cpp/mod_paren_on_throw-f.cfg                         cpp/throws.cpp

# Adopt some UT tests
10000  common/empty.cfg                                     cpp/621_this-spacing.cpp
10001  common/empty.cfg                                     cpp/622_ifdef-indentation.cpp
10002  cpp/623_caret-spacing.cfg                            cpp/623_caret-spacing.cpp
10003  cpp/633_decl-in-func-typedef.cfg                     cpp/633_decl-in-func-typedef.cpp
10004  common/empty.cfg                                     cpp/634_extern-c-no-block.cpp
10005  cpp/Uncrustify.Cpp.cfg                               cpp/define-indentation.cpp
10006  cpp/dont-detab-strings.cfg                           cpp/dont-detab-strings.cpp
10007  cpp/dont-process-defines.cfg                         cpp/dont-process-defines.cpp
10008  common/empty.cfg                                     cpp/PR326_invalid-backslash-eol-csharp.cpp
10009  cpp/STUCK_macro-difficulties.cfg                     cpp/STUCK_macro-difficulties.cpp

10020  cpp/U02-Cpp.cfg                                      cpp/macro_spaces.cpp
10021  cpp/U03-Cpp.cfg                                      cpp/braces_align.cpp
10022  cpp/U04-Cpp.cfg                                      cpp/foreach.cpp
10023  cpp/U05-Cpp.cfg                                      cpp/for_auto.cpp
10024  cpp/U06-Cpp.cfg                                      cpp/ifcomment.cpp
10025  cpp/U07-Cpp.cfg                                      cpp/qtargs.cpp
10026  cpp/sp_before_ellipsis-r.cfg                         cpp/gcc_case_ellipsis.cpp
10027  cpp/Issue_3058.cfg                                   cpp/Issue_3058.cpp
10028  cpp/sp_before_ellipsis-f.cfg                         cpp/gcc_case_ellipsis.cpp
10029  cpp/sp_after_ellipsis-f.cfg                          cpp/gcc_case_ellipsis.cpp

10047  cpp/U16-Cpp.cfg                                      cpp/UNI-1334.cpp
10048  common/empty.cfg                                     cpp/UNI-1335.cpp

10050  cpp/U18-Cpp.cfg                                      cpp/UNI-1337.cpp
10052  common/empty.cfg                                     cpp/UNI-1339.cpp
10053  cpp/UNI-1340.cfg                                     cpp/UNI-1340.cpp
10054  cpp/UNI-1344.cfg                                     cpp/UNI-1344.cpp
10056  cpp/UNI-1346.cfg                                     cpp/UNI-1346.cpp
10057  cpp/UNI-1347.cfg                                     cpp/UNI-1347.cpp

10060  cpp/UNI-1350.cfg                                     cpp/UNI-1350.cpp
10062  cpp/UNI-1356.cfg                                     cpp/UNI-1356.cpp
10063  cpp/UNI-1358.cfg                                     cpp/UNI-1358.cpp
10069  common/empty.cfg                                     cpp/UNI-1980.cpp

10070  cpp/U21-Cpp.cfg                                      cpp/UNI-1981.cpp
10071  common/empty.cfg                                     cpp/UNI-1983.cpp
10079  cpp/U23-Cpp.cfg                                      cpp/UNI-9650.cpp

10080  cpp/UNI-10496.cfg                                    cpp/UNI-10496.cpp

10100  cpp/issue_564.cfg                                    cpp/issue_564.cpp
10101  cpp/issue_574.cfg                                    cpp/issue_574.cpp
10102  cpp/issue_574-i-a.cfg                                cpp/issue_574.cpp
10103  cpp/issue_574-i-b.cfg                                cpp/issue_574.cpp

10566  common/empty.cfg                                     cpp/issue_1752.cpp

11000  cpp/UNI-12046.cfg                                    cpp/UNI-12046.cpp

20002  cpp/UNI-32657.cfg                                    cpp/UNI-32657.cpp

20011  common/empty.cfg                                     cpp/UNI-38381.cpp

60001  cpp/UNI-2650.cfg                                     cpp/UNI-2650.cpp
60002  cpp/U25-Cpp.cfg                                      cpp/UNI-16283.cpp
60003  cpp/U26-Cpp.cfg                                      cpp/UNI-1288.cpp
60006  cpp/UNI-2049.cfg                                     cpp/UNI-2049.cpp
60017  cpp/U27-Cpp.cfg                                      cpp/UNI-2683.cpp

60022  cpp/U28-Cpp.cfg                                      cpp/UNI-18439.cpp
60025  cpp/U29-Cpp.cfg                                      cpp/UNI-19894.cpp
60027  cpp/U30-Cpp.cfg                                      cpp/UNI-21506.cpp
60028  cpp/U31-Cpp.cfg                                      cpp/UNI-21509.cpp
60029  common/empty.cfg                                     cpp/UNI-21510.cpp

60030  cpp/U33-Cpp.cfg                                      cpp/UNI-21727.cpp
60031  common/empty.cfg                                     cpp/UNI-21728.cpp
60032  common/empty.cfg                                     cpp/UNI-21729.cpp
60036  cpp/UNI-2680.cfg                                     cpp/UNI-2680.cpp
60038  cpp/UNI-30088.cfg                                    cpp/UNI-30088.cpp
60039  cpp/U36-Cpp.cfg                                      cpp/UNI-30628.cpp

60042  common/UNI-18777.cfg                                 cpp/UNI-18777.cpp
60043  cpp/nl_remove_extra_newlines-1.cfg                   cpp/i2033.cpp
60044  cpp/nl_fdef_brace-r__nl_collapse_empty_body-t.cfg    cpp/i2116.cpp
60045  cpp/align_asterisk_after_type_cast.cfg               cpp/align_asterisk_after_type_cast.cpp
60046  cpp/align_continuation_left_shift.cfg                cpp/align_continuation_left_shift.cpp
60047  cpp/align_default_after_override.cfg                 cpp/align_default_after_override.cpp
60048  cpp/bug_2322.cfg                                     cpp/bug_2322.cpp
60049  cpp/bug_2402.cfg                                     cpp/bug_2402.cpp

60051  cpp/bug_2371.cfg                                     cpp/bug_2371.cpp
60052  cpp/bug_2433_1.cfg                                   cpp/bug_2433_1.cpp
60053  cpp/bug_2433_2.cfg                                   cpp/bug_2433_2.cpp
60054  cpp/interface-keyword-in-cpp.cfg                     cpp/interface-keyword-in-cpp.cpp
60055  cpp/issue_3116.cfg                                   cpp/issue_3116.cpp
60056  cpp/issue_3116.cfg                                   cpp/issue_3116-2.cpp
60057  cpp/issue_3116-2.cfg                                 cpp/issue_3116.cpp
60058  cpp/sp_constr_colon-i.cfg                            cpp/issue_3330.cpp
60059  cpp/indent_ctor_init_leading.cfg                     cpp/indent_ctor_init.cpp

60060  cpp/sp_return-a.cfg                                  cpp/returns.cpp
60061  cpp/sp_return-f.cfg                                  cpp/returns.cpp
60062  cpp/sp_return-i.cfg                                  cpp/returns.cpp
60063  cpp/sp_return-r.cfg                                  cpp/returns.cpp
60064  cpp/sp_constr_colon-i.cfg                            cpp/issue_3368.cpp
60065  cpp/issue_3378.cfg                                   cpp/issue_3378.cpp
60066  cpp/Issue_3409.cfg                                   cpp/Issue_3409.cpp
60067  common/empty.cfg                                     cpp/Issue_3283.cpp
60068  cpp/Issue_3428.cfg                                   cpp/Issue_3428.cpp
60069  cpp/Issue_3428_2.cfg                                 cpp/Issue_3428.cpp

60070  cpp/Issue_3428_3.cfg                                 cpp/Issue_3428.cpp
60071  cpp/Issue_3428_4.cfg                                 cpp/Issue_3428.cpp
60072  cpp/Issue_3428_5.cfg                                 cpp/Issue_3428.cpp
60073  cpp/Issue_3428_6.cfg                                 cpp/Issue_3428.cpp
60074  cpp/Issue_3284.cfg                                   cpp/Issue_3284.cpp
60075  cpp/Issue_3294.cfg                                   cpp/Issue_3294.cpp
60076  cpp/indent_ignore_before_class_colon-t.cfg           cpp/indent_ctor_init.cpp
60077  cpp/indent_ignore_before_constr_colon-t.cfg          cpp/indent_ctor_init.cpp
60078  cpp/indent_func_proto_param-t.cfg                    cpp/Issue_3505.cpp
60079  common/empty.cfg                                     cpp/Issue_3536.cpp

60080  common/empty.cfg                                     cpp/Issue_3538.cpp
60081  cpp/Issue_3546.cfg                                   cpp/Issue_3546.cpp
60082  cpp/Issue_3552.cfg                                   cpp/Issue_3552.cpp
60083  cpp/Issue_3570.cfg                                   cpp/Issue_3570.h
60084  cpp/Issue_3576-a.cfg                                 cpp/Issue_3576.h
60085  cpp/Issue_3576-b.cfg                                 cpp/Issue_3576.h
60086  cpp/indent_namespace_inner_only.cfg                  cpp/indent_namespace_inner_only.h
60087  cpp/Issue_3550.cfg                                   cpp/Issue_3550.cpp
60088  common/empty.cfg                                     cpp/Issue_3761.cpp
60089  cpp/Issue_3863.cfg                                   cpp/Issue_3863.cpp
60090  cpp/Issue_3863.cfg                                   cpp/Issue_3863_2.cpp
60091  cpp/Issue_3863.cfg                                   cpp/Issue_3863_3.cpp
60092  cpp/Issue_3865.cfg                                   cpp/Issue_3865.cpp
60093  cpp/Issue_3865_2.cfg                                 cpp/Issue_3865.cpp

60100  cpp/sp_qualifier_unnamed_ptr_star-i.cfg              cpp/sp_qualifier_ptr_star.cpp
60101  cpp/sp_qualifier_unnamed_ptr_star-a.cfg              cpp/sp_qualifier_ptr_star.cpp
60102  cpp/sp_qualifier_unnamed_ptr_star-r.cfg              cpp/sp_qualifier_ptr_star.cpp
60103  cpp/sp_qualifier_unnamed_ptr_star-f.cfg              cpp/sp_qualifier_ptr_star.cpp
60104  cpp/sp_qualifier_ptr_star_func-i.cfg                 cpp/sp_qualifier_ptr_star.cpp
60105  cpp/sp_qualifier_ptr_star_func-a.cfg                 cpp/sp_qualifier_ptr_star.cpp
60106  cpp/sp_qualifier_ptr_star_func-r.cfg                 cpp/sp_qualifier_ptr_star.cpp
60107  cpp/sp_qualifier_ptr_star_func-f.cfg                 cpp/sp_qualifier_ptr_star.cpp
60108  cpp/sp_qualifier_ptr_star_trailing-i.cfg             cpp/sp_qualifier_ptr_star.cpp
60109  cpp/sp_qualifier_ptr_star_trailing-a.cfg             cpp/sp_qualifier_ptr_star.cpp
60110  cpp/sp_qualifier_ptr_star_trailing-r.cfg             cpp/sp_qualifier_ptr_star.cpp
60111  cpp/sp_qualifier_ptr_star_trailing-f.cfg             cpp/sp_qualifier_ptr_star.cpp
60112  cpp/sp_before_qualifier_ptr_star-i.cfg               cpp/sp_before_not_var_ptr_star.cpp
60113  cpp/sp_before_qualifier_ptr_star-a.cfg               cpp/sp_before_not_var_ptr_star.cpp
60114  cpp/sp_before_qualifier_ptr_star-r.cfg               cpp/sp_before_not_var_ptr_star.cpp
60115  cpp/sp_before_qualifier_ptr_star-f.cfg               cpp/sp_before_not_var_ptr_star.cpp
60116  cpp/sp_before_operator_ptr_star-i.cfg                cpp/sp_before_not_var_ptr_star.cpp
60117  cpp/sp_before_operator_ptr_star-a.cfg                cpp/sp_before_not_var_ptr_star.cpp
60118  cpp/sp_before_operator_ptr_star-r.cfg                cpp/sp_before_not_var_ptr_star.cpp
60119  cpp/sp_before_operator_ptr_star-f.cfg                cpp/sp_before_not_var_ptr_star.cpp
60120  cpp/sp_before_scope_ptr_star-i.cfg                   cpp/sp_before_not_var_ptr_star.cpp
60121  cpp/sp_before_scope_ptr_star-a.cfg                   cpp/sp_before_not_var_ptr_star.cpp
60122  cpp/sp_before_scope_ptr_star-r.cfg                   cpp/sp_before_not_var_ptr_star.cpp
60123  cpp/sp_before_scope_ptr_star-f.cfg                   cpp/sp_before_not_var_ptr_star.cpp
60124  cpp/sp_before_global_scope_ptr_star-i.cfg            cpp/sp_before_not_var_ptr_star.cpp
60125  cpp/sp_before_global_scope_ptr_star-a.cfg            cpp/sp_before_not_var_ptr_star.cpp
60126  cpp/sp_before_global_scope_ptr_star-r.cfg            cpp/sp_before_not_var_ptr_star.cpp
60127  cpp/sp_before_global_scope_ptr_star-f.cfg            cpp/sp_before_not_var_ptr_star.cpp

60160  cpp/nl_min_after_func_body.cfg                       cpp/nl_func.cpp
60161  cpp/nl_min_after_func_body.cfg                       cpp/nl_func-2.cpp
60162  cpp/nl_max_after_func_body.cfg                       cpp/nl_func.cpp
60163  cpp/nl_max_after_func_body.cfg                       cpp/nl_func-2.cpp