tests: fix `./v -W build-tools` CI failure

Delyan Angelov 2022-04-30 13:49:36 +03:00 committed by Jef Roosens
parent 76c67952e6
commit 45f2348a24
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
1 changed files with 6 additions and 2 deletions

View File

@ -376,7 +376,9 @@ fn worker_trunner(mut p pool.PoolProcessor, idx int, thread_id int) voidptr {
}
if details.flaky && !testing.fail_flaky {
ts.append_message(.info, ' *FAILURE* of the known flaky test file $relative_file is ignored, since VTEST_FAIL_FLAKY is 0 . Retry count: $details.retry .')
goto test_passed_system
unsafe {
goto test_passed_system
}
}
ts.failed = true
ts.benchmark.fail()
@ -416,7 +418,9 @@ fn worker_trunner(mut p pool.PoolProcessor, idx int, thread_id int) voidptr {
}
if details.flaky && !testing.fail_flaky {
ts.append_message(.info, ' *FAILURE* of the known flaky test file $relative_file is ignored, since VTEST_FAIL_FLAKY is 0 . Retry count: $details.retry .')
goto test_passed_system
unsafe {
goto test_passed_execute
}
}
ts.failed = true
ts.benchmark.fail()