ci: fix failing deprecated_module test on windows

pull/13294/head
Delyan Angelov 2022-01-27 13:15:34 +02:00
parent e1a2ab345d
commit ebad7301f9
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
2 changed files with 4 additions and 3 deletions

View File

@ -25,6 +25,7 @@ const (
'examples/sokol/04_multi_shader_glsl/rt_glsl.v', 'examples/sokol/04_multi_shader_glsl/rt_glsl.v',
'examples/sokol/05_instancing_glsl/rt_glsl.v', 'examples/sokol/05_instancing_glsl/rt_glsl.v',
'examples/sokol/06_obj_viewer/show_obj.v', 'examples/sokol/06_obj_viewer/show_obj.v',
'vlib/v/checker/tests/modules/deprecated_module/main.v' /* adds deprecated_module. module prefix to imports, even though the folder has v.mod */,
'vlib/gg/m4/graphic.v', 'vlib/gg/m4/graphic.v',
'vlib/gg/m4/m4_test.v', 'vlib/gg/m4/m4_test.v',
'vlib/gg/m4/matrix.v', 'vlib/gg/m4/matrix.v',

View File

@ -1,6 +1,6 @@
import deprecated_module.bbb.ccc import bbb.ccc
import deprecated_module.www.ttt import www.ttt
import deprecated_module.xxx.yyy import xxx.yyy
// NB: www.ttt has been deprecated. // NB: www.ttt has been deprecated.
// => compiling this should produce an error, // => compiling this should produce an error,