tools: fix for v build-tools and v build-examples running on a i686 (the problem was discovered by @tankf33der)

This commit is contained in:
Delyan Angelov 2025-06-21 17:49:50 +03:00
parent b00f68cb2b
commit da97e0a2e4
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -824,6 +824,9 @@ pub mut:
pub fn get_test_details(file string) TestDetails {
mut res := TestDetails{}
if !os.is_file(file) {
return res
}
lines := os.read_lines(file) or { [] }
for idx, line in lines {
if line.starts_with('// vtest retry:') {