Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add leak detection during server termination
Memory leak detection may occur when working with the server: g.test_foo = function() ... g.server:exec(function() -- there is an error in `stderr` here end) g.server:exec(function() -- server is alive end) t.assert(true) end) g.after_all(function() g.server:drop() -- `test_foo` has been passed end) We have added a check of the `stderr` from the server for the presence of the `LeakSanitizer` substring. If it's found, an error will be caused (test will be failed). Closes #349
- Loading branch information