diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-04 09:23:54 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-02-04 09:23:54 +0800 |
commit | 5a9e5b6c385d6f24551812ba37710071ad3e78d4 (patch) | |
tree | 2b718370d418f23837bffadb127e028f8dfbfcad /src | |
parent | 22a7693915c15cb4822f85323961687c5e86675b (diff) | |
download | rneovim-5a9e5b6c385d6f24551812ba37710071ad3e78d4.tar.gz rneovim-5a9e5b6c385d6f24551812ba37710071ad3e78d4.tar.bz2 rneovim-5a9e5b6c385d6f24551812ba37710071ad3e78d4.zip |
vim-patch:8.1.0884: double check for bsd systems
Problem: Double check for bsd systems.
Solution: Delete the old line.
https://github.com/vim/vim/commit/af630d4f7f8daa7edbda0b607d32d39a5feae9d9
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_functions.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim index 67b94d5ef8..42facdd491 100644 --- a/src/nvim/testdir/test_functions.vim +++ b/src/nvim/testdir/test_functions.vim @@ -1396,7 +1396,6 @@ func Test_platform_name() if has('unix') && executable('uname') let uname = system('uname') call assert_equal(uname =~? 'BeOS', has('beos')) - call assert_equal(uname =~? 'BSD\|DragonFly', has('bsd')) " GNU userland on BSD kernels (e.g., GNU/kFreeBSD) don't have BSD defined call assert_equal(uname =~? '\%(GNU/k\w\+\)\@<!BSD\|DragonFly', has('bsd')) call assert_equal(uname =~? 'HP-UX', has('hpux')) |