Skip to content

Commit f6e5118

Browse files
committed
tools: cleanup the remaining obsolete hardcoded exceptions in cmd/tools/vtest.v
1 parent 7f6db12 commit f6e5118

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

‎cmd/tools/vtest.v‎

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -130,21 +130,6 @@ enum ShouldTestStatus {
130130
}
131131

132132
fn (mut ctx Context) should_test(path string, backend string) ShouldTestStatus {
133-
if path.ends_with('mysql_orm_test.v') {
134-
testing.find_started_process('mysqld') or { return .skip }
135-
}
136-
if path.ends_with('mysql_test.v') {
137-
testing.find_started_process('mysqld') or { return .skip }
138-
}
139-
if path.ends_with('pg_orm_test.v') {
140-
testing.find_started_process('postgres') or { return .skip }
141-
}
142-
if path.ends_with('pg_double_test.v') {
143-
testing.find_started_process('postgres') or { return .skip }
144-
}
145-
if path.ends_with('onecontext_test.v') {
146-
return .skip
147-
}
148133
if path.ends_with('_test.v') {
149134
return ctx.should_test_when_it_contains_matching_fns(path, backend)
150135
}

0 commit comments

Comments
 (0)