aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/testdir/check.vim9
-rw-r--r--src/nvim/testdir/test_excmd.vim1
-rw-r--r--src/nvim/testdir/test_help.vim2
3 files changed, 0 insertions, 12 deletions
diff --git a/src/nvim/testdir/check.vim b/src/nvim/testdir/check.vim
index 1459b70243..8a1080a2f3 100644
--- a/src/nvim/testdir/check.vim
+++ b/src/nvim/testdir/check.vim
@@ -90,15 +90,6 @@ func CheckUnix()
endif
endfunc
-" Command to check for not running on a BSD system.
-" TODO: using this checks should not be needed
-command CheckNotBSD call CheckNotBSD()
-func CheckNotBSD()
- if has('bsd')
- throw 'Skipped: does not work on BSD'
- endif
-endfunc
-
" Command to check that making screendumps is supported.
" Caller must source screendump.vim
command CheckScreendump call CheckScreendump()
diff --git a/src/nvim/testdir/test_excmd.vim b/src/nvim/testdir/test_excmd.vim
index 0e8af08b4b..42b1f8ca48 100644
--- a/src/nvim/testdir/test_excmd.vim
+++ b/src/nvim/testdir/test_excmd.vim
@@ -507,7 +507,6 @@ endfunc
func Test_redir_cmd_readonly()
CheckNotRoot
- CheckNotBSD
" Redirecting to a read-only file
call writefile([], 'Xfile')
diff --git a/src/nvim/testdir/test_help.vim b/src/nvim/testdir/test_help.vim
index 787f673991..6478ae5dbf 100644
--- a/src/nvim/testdir/test_help.vim
+++ b/src/nvim/testdir/test_help.vim
@@ -124,8 +124,6 @@ endfunc
func Test_helptag_cmd_readonly()
CheckUnix
CheckNotRoot
- " The following tests fail on FreeBSD for some reason
- CheckNotBSD
" Read-only tags file
call mkdir('Xdir/doc', 'p')