diff options
author | ZyX <kp-pav@yandex.ru> | 2017-03-23 21:04:45 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-23 21:04:45 +0300 |
commit | 99b4f25b990b8afe688bd8d7e5cf6dee209e1d31 (patch) | |
tree | 0b962ed655bd96ceee17a558c85804398bab0ac4 | |
parent | ca116df2606a0191f6600acfcd6088d5ce15ce6f (diff) | |
download | rneovim-99b4f25b990b8afe688bd8d7e5cf6dee209e1d31.tar.gz rneovim-99b4f25b990b8afe688bd8d7e5cf6dee209e1d31.tar.bz2 rneovim-99b4f25b990b8afe688bd8d7e5cf6dee209e1d31.zip |
functests: Do not run termopen test on Windows
-rw-r--r-- | test/functional/core/main_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/core/main_spec.lua b/test/functional/core/main_spec.lua index 80838d1e9c..2c4d110f0f 100644 --- a/test/functional/core/main_spec.lua +++ b/test/functional/core/main_spec.lua @@ -59,6 +59,7 @@ describe('Command-line option', function() eq(#('100500\n'), attrs.size) end) it('does not crash after reading from stdin in non-headless mode', function() + if helpers.pending_win32(pending) then return end local screen = Screen.new(40, 8) screen:attach() funcs.termopen({ |