Skip to content

Commit 481b842

Browse files
authored
tools: fix vtest-self.v on Windows and tcc compiler (#22110)
1 parent 27ef543 commit 481b842

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cmd/tools/vtest-self.v

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -444,10 +444,8 @@ fn main() {
444444
tsession.skip_files << 'vlib/db/pg/pg_orm_test.v'
445445
tsession.skip_files << 'vlib/db/pg/pg_double_test.v'
446446
}
447-
$if windows {
448-
if cfg.github_job == 'tcc' {
449-
tsession.skip_files << 'vlib/v/tests/project_with_cpp_code/compiling_cpp_files_with_a_cplusplus_compiler_test.c.v'
450-
}
447+
$if windows && tinyc {
448+
tsession.skip_files << 'vlib/v/tests/project_with_cpp_code/compiling_cpp_files_with_a_cplusplus_compiler_test.c.v'
451449
}
452450
if !cfg.run_slow_sanitize
453451
&& ((cfg.sanitize_undefined || cfg.sanitize_memory || cfg.sanitize_address)

0 commit comments

Comments
 (0)