Skip to content

Commit

Permalink
Fix equality tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed Dec 9, 2024
1 parent 329cc11 commit 48ae405
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public void testVulkanLWJGLEvent()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -70,6 +71,7 @@ public void testVulkanLWJGLDescriptorSet()
.withIgnoredFields(
"ownership",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -84,6 +86,7 @@ public void testVulkanLWJGLCommandBuffer()
"buffer",
"ownership",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -97,6 +100,7 @@ public void testVulkanLWJGLCommandPool()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -110,6 +114,7 @@ public void testVulkanLWJGLDescriptorSetLayout()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -123,6 +128,7 @@ public void testVulkanLWJGLFramebuffer()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -136,6 +142,7 @@ public void testVulkanLWJGLImage()
"ownership",
"deallocate",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -149,6 +156,7 @@ public void testVulkanLWJGLBuffer()
"ownership",
"deallocate",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -171,6 +179,7 @@ public void testVulkanLWJGLImageView()
"device",
"image",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand Down Expand Up @@ -213,6 +222,7 @@ public void testVulkanLWJGLPipeline()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.verify();
}
Expand All @@ -225,6 +235,7 @@ public void testVulkanLWJGLPipelineLayout()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.verify();
}
Expand All @@ -251,6 +262,7 @@ public void testVulkanLWJGLRenderPass()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -264,6 +276,7 @@ public void testVulkanLWJGLSemaphoreBinary()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -277,6 +290,7 @@ public void testVulkanLWJGLSemaphoreTimeline()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -290,6 +304,7 @@ public void testVulkanLWJGLShaderModule()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -303,6 +318,7 @@ public void testVulkanLWJGLDeviceMemory()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -324,6 +340,7 @@ public void testVulkanLWJGLQueryPool()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand All @@ -337,6 +354,7 @@ public void testVulkanLWJGLFence()
"ownership",
"device",
"closed",
"name",
"host_allocator_proxy")
.withNonnullFields("handle")
.verify();
Expand Down

0 comments on commit 48ae405

Please sign in to comment.