neovim/test/functional/ex_cmds/quit_spec.lua
Thiago de Arruda 22ea2900d0 loop: Free the parent queue last when destroying the loop
This avoids a heap-use-after-free ASAN error. Close #3334
2015-09-16 02:52:55 -03:00

15 lines
337 B
Lua

local helpers = require('test.functional.helpers')
local execute, eq, clear = helpers.execute, helpers.eq, helpers.clear
describe(':qa', function()
before_each(function()
clear('qa')
end)
it('verify #3334', function()
-- just testing if 'qa' passed as a program argument wont result in memory
-- errors
end)
end)