Patch in arena to cleanup leaks

master
Benjamin Feng 2020-01-29 21:35:08 -06:00
parent b077f3ab7d
commit 898ef82d65
1 changed files with 8 additions and 2 deletions

View File

@ -201,7 +201,10 @@ pub fn main() !void {
}
test "invalid inputs" {
global_allocator = std.testing.allocator;
var arena = std.heap.ArenaAllocator.init(std.testing.allocator);
defer arena.deinit();
global_allocator = &arena.allocator;
expectError("}ABC", error.InvalidInput);
expectError("{ABC", error.InvalidInput);
@ -222,7 +225,10 @@ fn expectError(test_input: []const u8, expected_err: anyerror) void {
}
test "valid inputs" {
global_allocator = std.testing.allocator;
var arena = std.heap.ArenaAllocator.init(std.testing.allocator);
defer arena.deinit();
global_allocator = &arena.allocator;
expectExpansion("{x,y,z}", "x y z");
expectExpansion("{A,B}{x,y}", "Ax Ay Bx By");