patch 9.0.1984: CI: Test_open_delay*() fails on FreeBSD 14

Commit: 
https://github.com/vim/vim/commit/85ff0c1912f6d94ed94a6112517e96f64801ba56
Author: Christian Brabandt <c...@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 <c...@256bit.org>

diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index 8f1291c22..5761f213c 100644
--- 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
 
diff --git a/src/version.c b/src/version.c
index 32005545f..f1934b91b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1984,
 /**/
     1983,
 /**/

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/E1qo8Gt-007qxm-Dh%40256bit.org.

Reply via email to