util.ringbuffer: Prevent creation of buffer with negative size

Previously this would have been (unsigned)-1 which is a large positive
integer.
This commit is contained in:
Kim Alvefur 2020-06-04 16:11:08 +02:00
parent 0bb1474ce6
commit 4bab7af07d
2 changed files with 6 additions and 1 deletions

View file

@ -12,6 +12,11 @@ describe("util.ringbuffer", function ()
rb.new(0);
end);
end);
it("won't create a negatively sized buffer", function ()
assert.has_error(function ()
rb.new(-1);
end);
end);
end);
describe(":write", function ()
local b = rb.new();