mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
test: run all tests even if some fail
This commit is contained in:
@ -237,7 +237,7 @@ pub:
|
||||
}
|
||||
fn __print_assert_failure(i &VAssertMetaInfo) {
|
||||
eprintln('${i.fpath}:${i.line_nr+1}: FAIL: fn ${i.fn_name}: assert ${i.src}')
|
||||
if i.op != 'call' {
|
||||
if i.op.len > 0 && i.op != 'call' {
|
||||
eprintln(' left value: ${i.llabel} = ${i.lvalue}')
|
||||
eprintln(' right value: ${i.rlabel} = ${i.rvalue}')
|
||||
}
|
||||
|
Reference in New Issue
Block a user