@@ -18,12 +18,18 @@ const (
18
18
'examples/term.ui' ,
19
19
]
20
20
verify_known_failing_exceptions = [
21
+ // Handcrafted meaningful formatting of code parts (mostly arrays)
22
+ 'examples/sokol/02_cubes_glsl/cube_glsl.v' ,
23
+ 'examples/sokol/03_march_tracing_glsl/rt_glsl.v' ,
24
+ 'examples/sokol/04_multi_shader_glsl/rt_glsl.v' ,
25
+ 'examples/sokol/05_instancing_glsl/rt_glsl.v' ,
26
+ 'vlib/gg/m4/graphic.v' ,
27
+ 'vlib/gg/m4/m4_test.v' ,
28
+ 'vlib/gg/m4/matrix.v' ,
21
29
'vlib/builtin/int_test.v' /* special number formatting that should be tested */ ,
30
+ // TODOs and unfixed vfmt bugs
22
31
'vlib/builtin/int.v' /* TODO byteptr: vfmt converts `pub fn (nn byteptr) str() string {` to `nn &byte` and that conflicts with `nn byte` */ ,
23
32
'vlib/builtin/string_charptr_byteptr_helpers.v' /* TODO byteptr: a temporary shim to ease the byteptr=>&byte transition */ ,
24
- 'vlib/gg/m4/graphic.v' /* has hand crafted meaningful formatting of matrices */ ,
25
- 'vlib/gg/m4/m4_test.v' /* has hand crafted meaningful formatting of matrices */ ,
26
- 'vlib/gg/m4/matrix.v' /* has hand crafted meaningful formatting of matrices */ ,
27
33
'vlib/v/tests/array_append_short_struct_test.v' , /* extra empty line */
28
34
'vlib/v/tests/fixed_array_const_size_test.v' , /* fixed arr type is changed */
29
35
'vlib/v/tests/fn_high_test.v' , /* param name removed */
@@ -34,9 +40,13 @@ const (
34
40
'vlib/v/tests/string_interpolation_test.v' /* TODO byteptr: &byte.str() behaves differently than byteptr.str() */ ,
35
41
'vlib/v/gen/js/tests/js.v' , /* local `hello` fn, gets replaced with module `hello` aliased as `hl` */
36
42
'vlib/v/gen/c/cheaders.v' /* the preprocessor directives are formated to the V standard, even though they are in a string literal */ ,
43
+ 'examples/c_interop_wkhtmltopdf.v' , /* &charptr --> &&char */
44
+ 'examples/path_tracing.v' , /* block --> line comments corrupts code */
37
45
]
38
46
vfmt_verify_list = [
39
47
'cmd/' ,
48
+ 'examples/' ,
49
+ 'tutorials/' ,
40
50
'vlib/arrays/' ,
41
51
'vlib/benchmark/' ,
42
52
'vlib/bitfield/' ,
0 commit comments