diff options
author | James McCoy <jamessan@jamessan.com> | 2019-01-01 11:27:52 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2019-01-01 11:27:52 -0500 |
commit | 2fbe28bc058d142e4374999548ef2ff7b4fbc215 (patch) | |
tree | be4556881396c1dd9909d3b56f1f8b0b49515e1d | |
parent | b5de158fdf02d84219eff651f978c66ab99f2b58 (diff) | |
download | rneovim-2fbe28bc058d142e4374999548ef2ff7b4fbc215.tar.gz rneovim-2fbe28bc058d142e4374999548ef2ff7b4fbc215.tar.bz2 rneovim-2fbe28bc058d142e4374999548ef2ff7b4fbc215.zip |
Mark "shell command :! throttles shell-command output greater than ~10KB" fragile
-rw-r--r-- | test/functional/ui/output_spec.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua index aa99499ec6..87b489fd71 100644 --- a/test/functional/ui/output_spec.lua +++ b/test/functional/ui/output_spec.lua @@ -51,6 +51,9 @@ describe("shell command :!", function() end) it("throttles shell-command output greater than ~10KB", function() + if helpers.skip_fragile(pending) then + return + end child_session.feed_data( ":!for i in $(seq 2 30000); do echo XXXXXXXXXX $i; done\n") |