Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/unit/other_positive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ TEST_F(PositiveOther, GetDeviceFaultReportsWithoutTimeout) {
RETURN_IF_SKIP(Init());
uint32_t fault_counts = 0;
VkResult result = vk::GetDeviceFaultReportsKHR(device(), 0, &fault_counts, nullptr);
ASSERT_EQ(VK_SUCCESS, result);
ASSERT_TRUE(result == VK_TIMEOUT || result == VK_SUCCESS);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this test then? it's called GetDeviceFaultReportsWithoutTimeout

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to talk with Samual again.... the whole ShaderAbort thing has been a disaster IMO, and seems a lack of testing/agreement how these device faults should work

... closing and going to figure this out

ASSERT_EQ(fault_counts, 0);
}

Expand Down
Loading