1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: skip const_comptime_eval_before_vinit_test.v with MSVC

This commit is contained in:
Delyan Angelov 2021-07-30 21:46:59 +03:00
parent 26b7712bbe
commit 0675079b98
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -128,6 +128,9 @@ pub fn (mut ts TestSession) print_messages() {
pub fn new_test_session(_vargs string, will_compile bool) TestSession {
mut skip_files := []string{}
if will_compile {
$if msvc {
skip_files << 'vlib/v/tests/const_comptime_eval_before_vinit_test.v' // _constructor used
}
$if solaris {
skip_files << 'examples/gg/gg2.v'
skip_files << 'examples/pico/pico.v'