mirror of
https://github.com/vlang/v.git
synced 2025-09-09 07:15:50 -04:00
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:
parent
b00f68cb2b
commit
da97e0a2e4
@ -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:') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user