mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
fast.v: freebsd fixes
This commit is contained in:
parent
930b95f76c
commit
ece5fa183c
2 changed files with 11 additions and 3 deletions
|
@ -118,7 +118,10 @@ fn test_socket_write_fail_without_panic() {
|
|||
$if solaris {
|
||||
return
|
||||
}
|
||||
// TODO: fix segfaulting on Solaris
|
||||
$if freebsd {
|
||||
return
|
||||
}
|
||||
// TODO: fix segfaulting on Solaris and FreeBSD
|
||||
for i := 0; i < 3; i++ {
|
||||
socket.write_string(message2) or {
|
||||
println('write to a socket without a recipient should produce an option fail: $err | $message2')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue