diff options
author | Daniel Steinberg <dstein64@users.noreply.github.com> | 2021-07-10 23:15:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-10 20:15:38 -0700 |
commit | 936f3a4ddc543dc047ac0f7867629a37eaaf2362 (patch) | |
tree | 0448f89f72cbbaa50a568e06b4a5b7ebb1ea2618 | |
parent | 7c61d9c3bfe201943de731e4cba62b559392e49a (diff) | |
download | rneovim-936f3a4ddc543dc047ac0f7867629a37eaaf2362.tar.gz rneovim-936f3a4ddc543dc047ac0f7867629a37eaaf2362.tar.bz2 rneovim-936f3a4ddc543dc047ac0f7867629a37eaaf2362.zip |
test/memory_usage_spec: skip on MacOS #15043
Memory compression could complicate the measurements.
-rw-r--r-- | test/functional/legacy/memory_usage_spec.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/legacy/memory_usage_spec.lua b/test/functional/legacy/memory_usage_spec.lua index 0f2d77093a..d86caca0e9 100644 --- a/test/functional/legacy/memory_usage_spec.lua +++ b/test/functional/legacy/memory_usage_spec.lua @@ -168,6 +168,9 @@ describe('memory usage', function() end) it('releases memory when closing windows when folds exist', function() + if helpers.is_os('mac') then + pending('macOS memory compression causes flakiness') + end local pid = eval('getpid()') source([[ new |