summaryrefslogtreecommitdiffstats
path: root/src/testdir/check.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-03-20 12:49:15 +0100
committerBram Moolenaar <Bram@vim.org>2021-03-20 12:49:15 +0100
commit4355894869355c185e7810e67d52802453576e81 (patch)
tree02edd82b2aa20ee5b1bda52f3cd7b434657c6992 /src/testdir/check.vim
parent240014321b0aa5d6eb00a70865fa9935fd888d60 (diff)
patch 8.2.2627: no need to check for BSD after checking for not rootv8.2.2627
Problem: No need to check for BSD after checking for not root. Solution: Remove CheckNotBSD. (Ozaki Kiichi, closes #7989)
Diffstat (limited to 'src/testdir/check.vim')
-rw-r--r--src/testdir/check.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/testdir/check.vim b/src/testdir/check.vim
index 4fe130b7bf..6190399e5d 100644
--- a/src/testdir/check.vim
+++ b/src/testdir/check.vim
@@ -92,15 +92,6 @@ func CheckLinux()
endif
endfunc
-" Command to check for not running on a BSD system.
-" TODO: using this check 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()