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

builtin: make panics more IDE friendly

This commit is contained in:
Delyan Angelov
2021-03-16 18:46:11 +02:00
parent e554415123
commit 1753445a64
4 changed files with 4 additions and 6 deletions

View File

@ -207,7 +207,7 @@ fn main() {
args := os.args.clone()
args_string := args[1..].join(' ')
cmd_prefix := args_string.all_before('test-self')
title := 'testing all tests'
title := 'testing vlib'
all_test_files := os.walk_ext(os.join_path(vroot, 'vlib'), '_test.v')
testing.eheader(title)
mut tsession := testing.new_test_session(cmd_prefix)