aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2022-02-17 17:25:58 -0500
committerGitHub <noreply@github.com>2022-02-17 17:25:58 -0500
commitdf0fae2ff7cd666947b752f76987bb6756e187da (patch)
tree5e3f67f9cf7c7eeceb1898a7b99d94c2b717518a /test/functional/core
parent1fd106ca88a606241e1e1fb8c73645dcea5ea5c8 (diff)
parentf3e6cc1a23b84ee5a8698614e78bce6d702a6d61 (diff)
downloadrneovim-df0fae2ff7cd666947b752f76987bb6756e187da.tar.gz
rneovim-df0fae2ff7cd666947b752f76987bb6756e187da.tar.bz2
rneovim-df0fae2ff7cd666947b752f76987bb6756e187da.zip
Merge pull request #17430 from dundargoc/test/remove-travis
Diffstat (limited to 'test/functional/core')
-rw-r--r--test/functional/core/job_spec.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua
index 5e127bce26..0a69660871 100644
--- a/test/functional/core/job_spec.lua
+++ b/test/functional/core/job_spec.lua
@@ -295,12 +295,6 @@ describe('jobs', function()
end)
it("will not buffer data if it doesn't end in newlines", function()
- if helpers.isCI('travis') and os.getenv('CC') == 'gcc-4.9'
- and helpers.is_os('mac') then
- -- XXX: Hangs Travis macOS since e9061117a5b8f195c3f26a5cb94e18ddd7752d86.
- pending("[Hangs on Travis macOS. #5002]")
- end
-
nvim('command', "let j = jobstart(['cat', '-'], g:job_opts)")
nvim('command', 'call jobsend(j, "abc\\nxyz")')
eq({'notification', 'stdout', {0, {'abc', 'xyz'}}}, next_msg())