Skip to content

Commit 78ef964

Browse files
committed
ci: fix docker-ubuntu-musl gc test
1 parent c37f3f5 commit 78ef964

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

‎vlib/v/gen/c/coutput_test.v‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,9 @@ fn should_skip(relpath string) bool {
268268
return true
269269
}
270270
if github_job == 'docker-ubuntu-musl' && (relpath.ends_with('print_boehm_leak.vv')
271-
|| relpath.ends_with('scope_cleanup_boehm_leak.vv')) {
272-
eprintln('> skipping ${relpath} on docker-ubuntu-musl, since boehm_leak gc mode has pthread issues on musl')
271+
|| relpath.ends_with('scope_cleanup_boehm_leak.vv')
272+
|| relpath.ends_with('gc_debugger_linux.vv')) {
273+
eprintln('> skipping ${relpath} on docker-ubuntu-musl, since gc related tests are not compatible with `-gc none`')
273274
return true
274275
}
275276
if user_os == 'windows' {

0 commit comments

Comments
 (0)