diff src/testdir/test_channel.vim @ 33461:6448d7b2ce20 v9.0.1984

patch 9.0.1984: CI: Test_open_delay*() fails on FreeBSD 14 Commit: https://github.com/vim/vim/commit/85ff0c1912f6d94ed94a6112517e96f64801ba56 Author: Christian Brabandt <cb@256bit.org> Date: Wed Oct 4 21:58:24 2023 +0200 patch 9.0.1984: CI: Test_open_delay*() fails on FreeBSD 14 Problem: CI: Test_open_delay*() fails on FreeBSD 14 Solution: Skip it on BSD Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 04 Oct 2023 22:15:03 +0200
parents b59205d0567e
children
line wrap: on
line diff
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -1542,12 +1542,16 @@ func Ch_open_delay(port)
 endfunc
 
 func Test_open_delay()
+  " This fails on BSD (e.g. Cirrus-CI), why?
+  CheckNotBSD
   " The server will wait half a second before creating the port.
   call s:run_server('Ch_open_delay', 'delay')
 endfunc
 
 func Test_open_delay_ipv6()
   CheckIPv6
+  " This fails on BSD (e.g. Cirrus-CI), why?
+  CheckNotBSD
   call Test_open_delay()
 endfunc