Skip to content

Commit d0d6d1e

Browse files
committed
v2.eval: disable eval tests temporarily
1 parent 38e0b2b commit d0d6d1e

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

‎vlib/v2/eval/eval_test.v‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ const eval_backend_timeout_ms = 60_000
1111
const eval_backend_poll_ms = 50
1212
const eval_backend_term_grace_ms = 1_000
1313

14+
fn testsuite_begin() {
15+
skip_test('v2 eval tests are temporarily disabled')
16+
}
17+
1418
fn eval_backend_tmp_dir() string {
1519
return os.join_path(os.temp_dir(), 'v2_eval_integration_${os.getpid()}')
1620
}
@@ -807,3 +811,9 @@ fn main() {
807811
") or { panic(err) }
808812
assert e.stdout() == '42\n84\n'
809813
}
814+
815+
@[noreturn]
816+
fn skip_test(reason string) {
817+
println('skipping test, because ${reason} .')
818+
exit(0)
819+
}

0 commit comments

Comments
 (0)