mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
CI/OpenBSD: run functional tests
Adapt some tests for OpenBSD: - scrollback_spec: - seq(1) is not available on OpenBSD: we'd use jot(1). - Instead use a (hopefully) portable awk(1) snippet. - channels_spec - job_spec - tui_spec
This commit is contained in:
committed by
Justin M. Keyes
parent
d1bed81ad8
commit
b64af88c84
@@ -139,8 +139,8 @@ describe('channels', function()
|
||||
|
||||
command("call chansend(id, 'incomplet\004')")
|
||||
|
||||
local is_freebsd = (string.lower(uname()) == 'freebsd')
|
||||
local bsdlike = is_freebsd or (os_name() == "osx")
|
||||
local is_bsd = not not string.find(string.lower(uname()), 'bsd')
|
||||
local bsdlike = is_bsd or (os_name() == "osx")
|
||||
local extra = bsdlike and "^D\008\008" or ""
|
||||
expect_twoline(id, "stdout",
|
||||
"incomplet"..extra, "[1, ['incomplet'], 'stdin']", true)
|
||||
|
||||
Reference in New Issue
Block a user