Laytan Laats пре 7 месеци
родитељ
комит
ae0f69fbe2
2 измењених фајлова са 2 додато и 0 уклоњено
  1. 1 0
      tests/core/mem/test_core_mem.odin
  2. 1 0
      tests/core/runtime/test_core_runtime.odin

+ 1 - 0
tests/core/mem/test_core_mem.odin

@@ -44,6 +44,7 @@ test_tlsf_bitscan :: proc(t: ^testing.T) {
 @(test)
 test_align_bumping_block_limit :: proc(t: ^testing.T) {
 	a: virtual.Arena
+	defer virtual.arena_destroy(&a)
 
 	data, err := virtual.arena_alloc(&a, 4193371, 1)
 	testing.expect_value(t, err, nil)

+ 1 - 0
tests/core/runtime/test_core_runtime.odin

@@ -35,6 +35,7 @@ test_temp_allocator_big_alloc_and_alignment :: proc(t: ^testing.T) {
 test_align_bumping_block_limit :: proc(t: ^testing.T) {
 	a: runtime.Arena
 	a.minimum_block_size = 8*mem.Megabyte
+	defer runtime.arena_destroy(&a)
 
 	data, err := runtime.arena_alloc(&a, 4193371, 1)
 	testing.expect_value(t, err, nil)