From 39be40ce940d997b666ddff2bebcdcdff7f98541 Mon Sep 17 00:00:00 2001 From: Conor McCarthy Date: Fri, 29 Sep 2023 14:40:06 +1000 Subject: [PATCH] tests: Destroy the test context in test_readback_map_stability(). --- tests/d3d12.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/d3d12.c b/tests/d3d12.c index 86e8a8b1..d61309e9 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -36343,6 +36343,8 @@ static void test_readback_map_stability(void) ID3D12Resource_Unmap(buffer, 0, NULL); ID3D12Resource_Release(buffer); + + destroy_test_context(&context); } static void test_vs_ps_relative_addressing(void)